@maxim_mazurok/gapi.client.compute-alpha 0.0.20230516 → 0.0.20230530
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 +1241 -547
- package/package.json +1 -1
- package/readme.md +40 -0
- package/tests.ts +160 -5
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: 20230530
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1327,6 +1327,13 @@ declare namespace gapi.client {
|
|
|
1327
1327
|
/** Optional parameter to define a target capacity for the UTILIZATION balancing mode. The valid range is [0.0, 1.0]. For usage guidelines, see Utilization balancing mode. */
|
|
1328
1328
|
maxUtilization?:
|
|
1329
1329
|
number;
|
|
1330
|
+
/**
|
|
1331
|
+
* This field indicates whether this backend should be fully utilized before sending traffic to backends with default preference. The possible values are: - PREFERRED: Backends with
|
|
1332
|
+
* this preference level will be filled up to their capacity limits first, based on RTT. - DEFAULT: If preferred backends don't have enough capacity, backends in this layer would be
|
|
1333
|
+
* used and traffic would be assigned based on the load balancing algorithm you use. This is the default
|
|
1334
|
+
*/
|
|
1335
|
+
preference?:
|
|
1336
|
+
string;
|
|
1330
1337
|
}
|
|
1331
1338
|
interface BackendBucket {
|
|
1332
1339
|
/** Cloud Storage bucket name. */
|
|
@@ -3321,6 +3328,25 @@ declare namespace gapi.client {
|
|
|
3321
3328
|
resourcePolicies?:
|
|
3322
3329
|
string[];
|
|
3323
3330
|
}
|
|
3331
|
+
interface DiskSettings {
|
|
3332
|
+
/**
|
|
3333
|
+
* An optional parameter for storing the default resource policies that will be used for the Disks created in the given scope. The Key is a string type, provided by customers to
|
|
3334
|
+
* uniquely identify the default Resource Policy entry. The Value is a Default ResourcePolicyDetails Object used to represent the detailed information of the Resource Policy entry.
|
|
3335
|
+
*/
|
|
3336
|
+
defaultResourcePolicies?:
|
|
3337
|
+
{ [P in string]: DiskSettingsResourcePolicyDetails };
|
|
3338
|
+
}
|
|
3339
|
+
interface DiskSettingsResourcePolicyDetails {
|
|
3340
|
+
/**
|
|
3341
|
+
* [Output Only] A list of Disk Types that will be excluded from applying the Resource Policy referenced here. If absent, Disks created in any DiskType can use the referenced default
|
|
3342
|
+
* Resource Policy.
|
|
3343
|
+
*/
|
|
3344
|
+
excludedDiskTypes?:
|
|
3345
|
+
string[];
|
|
3346
|
+
/** The target Resource Policies identified by their Fully-Qualified URL. */
|
|
3347
|
+
resourcePolicy?:
|
|
3348
|
+
string;
|
|
3349
|
+
}
|
|
3324
3350
|
interface DisksRemoveResourcePoliciesRequest {
|
|
3325
3351
|
/** Resource policies to be removed from this disk. */
|
|
3326
3352
|
resourcePolicies?:
|
|
@@ -3369,14 +3395,6 @@ declare namespace gapi.client {
|
|
|
3369
3395
|
asyncSecondaryDisk?:
|
|
3370
3396
|
string;
|
|
3371
3397
|
}
|
|
3372
|
-
interface DisksStopAsyncReplicationRequest {
|
|
3373
|
-
/**
|
|
3374
|
-
* [Deprecated] The secondary disk to stop asynchronous replication to. This field will not be included in the beta or v1 APIs and will be removed from the alpha API in the near
|
|
3375
|
-
* future.
|
|
3376
|
-
*/
|
|
3377
|
-
asyncSecondaryDisk?:
|
|
3378
|
-
string;
|
|
3379
|
-
}
|
|
3380
3398
|
interface DisksStopGroupAsyncReplicationResource {
|
|
3381
3399
|
/**
|
|
3382
3400
|
* The URL of the DiskConsistencyGroupPolicy for the group of disks to stop. This may be a full or partial URL, such as: -
|
|
@@ -10743,6 +10761,12 @@ declare namespace gapi.client {
|
|
|
10743
10761
|
/** The IPv4 address assigned to the producer instance network interface. This value will be a range in case of Serverless. */
|
|
10744
10762
|
ipAddress?:
|
|
10745
10763
|
string;
|
|
10764
|
+
/**
|
|
10765
|
+
* The IPv6 address assigned to the producer instance network interface. This is only assigned when the stack types of both the instance network interface and the consumer subnet are
|
|
10766
|
+
* IPv4_IPv6.
|
|
10767
|
+
*/
|
|
10768
|
+
ipv6Address?:
|
|
10769
|
+
string;
|
|
10746
10770
|
/** The project id or number of the interface to which the IP was assigned. */
|
|
10747
10771
|
projectIdOrNum?:
|
|
10748
10772
|
string;
|
|
@@ -13084,6 +13108,17 @@ declare namespace gapi.client {
|
|
|
13084
13108
|
string;
|
|
13085
13109
|
};
|
|
13086
13110
|
}
|
|
13111
|
+
interface PartnerMetadata {
|
|
13112
|
+
/** Instance-level hash to be used for optimistic locking. */
|
|
13113
|
+
fingerprint?:
|
|
13114
|
+
string;
|
|
13115
|
+
/**
|
|
13116
|
+
* Partner Metadata assigned to the instance. A map from a subdomain to entries map. Subdomain name must be compliant with RFC1035 definition. The total size of all keys and values
|
|
13117
|
+
* must be less than 2MB. Subdomain 'metadata.compute.googleapis.com' is reserverd for instance's metadata.
|
|
13118
|
+
*/
|
|
13119
|
+
partnerMetadata?:
|
|
13120
|
+
{ [P in string]: StructuredEntries };
|
|
13121
|
+
}
|
|
13087
13122
|
interface PathMatcher {
|
|
13088
13123
|
/**
|
|
13089
13124
|
* defaultCustomErrorResponsePolicy specifies how the Load Balancer returns error responses when BackendServiceor BackendBucket responds with an error. This policy takes effect at the
|
|
@@ -14039,6 +14074,9 @@ declare namespace gapi.client {
|
|
|
14039
14074
|
/** The map holding related quota dimensions. */
|
|
14040
14075
|
dimensions?:
|
|
14041
14076
|
{ [P in string]: string };
|
|
14077
|
+
/** Future quota limit being rolled out. The limit's unit depends on the quota type or metric. */
|
|
14078
|
+
futureLimit?:
|
|
14079
|
+
number;
|
|
14042
14080
|
/** Current effective quota limit. The limit's unit depends on the quota type or metric. */
|
|
14043
14081
|
limit?:
|
|
14044
14082
|
number;
|
|
@@ -14197,14 +14235,6 @@ declare namespace gapi.client {
|
|
|
14197
14235
|
asyncSecondaryDisk?:
|
|
14198
14236
|
string;
|
|
14199
14237
|
}
|
|
14200
|
-
interface RegionDisksStopAsyncReplicationRequest {
|
|
14201
|
-
/**
|
|
14202
|
-
* [Deprecated] The secondary disk to stop asynchronous replication to. This field will not be included in the beta or v1 APIs and will be removed from the alpha API in the near
|
|
14203
|
-
* future.
|
|
14204
|
-
*/
|
|
14205
|
-
asyncSecondaryDisk?:
|
|
14206
|
-
string;
|
|
14207
|
-
}
|
|
14208
14238
|
interface RegionDiskTypeList {
|
|
14209
14239
|
/** [Output Only] Unique identifier for the resource; defined by the server. */
|
|
14210
14240
|
id?:
|
|
@@ -15649,6 +15679,12 @@ declare namespace gapi.client {
|
|
|
15649
15679
|
*/
|
|
15650
15680
|
asn?:
|
|
15651
15681
|
number;
|
|
15682
|
+
/**
|
|
15683
|
+
* Explicitly specifies a range of valid BGP Identifiers for this Router. It is provided as a link-local IPv4 range (from 169.254.0.0/16), of size at least /30, even if the BGP
|
|
15684
|
+
* sessions are over IPv6. It must not overlap with any IPv4 BGP session ranges. Other vendors commonly call this "router ID".
|
|
15685
|
+
*/
|
|
15686
|
+
identifierRange?:
|
|
15687
|
+
string;
|
|
15652
15688
|
/**
|
|
15653
15689
|
* The interval in seconds between BGP keepalive messages that are sent to the peer. Hold time is three times the interval at which keepalive messages are sent, and the hold time is
|
|
15654
15690
|
* the maximum number of seconds allowed to elapse between successive keepalive messages that BGP receives from a peer. BGP will use the smaller of either the local hold time value or
|
|
@@ -15695,6 +15731,9 @@ declare namespace gapi.client {
|
|
|
15695
15731
|
*/
|
|
15696
15732
|
enable?:
|
|
15697
15733
|
string;
|
|
15734
|
+
/** Enable IPv4 traffic over BGP Peer. It is enabled by default if the peerIpAddress is version 4. */
|
|
15735
|
+
enableIpv4?:
|
|
15736
|
+
boolean;
|
|
15698
15737
|
/** Enable IPv6 traffic over BGP Peer. If not specified, it is disabled by default. */
|
|
15699
15738
|
enableIpv6?:
|
|
15700
15739
|
boolean;
|
|
@@ -15704,6 +15743,9 @@ declare namespace gapi.client {
|
|
|
15704
15743
|
/** IP address of the interface inside Google Cloud Platform. Only IPv4 is supported. */
|
|
15705
15744
|
ipAddress?:
|
|
15706
15745
|
string;
|
|
15746
|
+
/** IPv4 address of the interface inside Google Cloud Platform. */
|
|
15747
|
+
ipv4NexthopAddress?:
|
|
15748
|
+
string;
|
|
15707
15749
|
/** IPv6 address of the interface inside Google Cloud Platform. */
|
|
15708
15750
|
ipv6NexthopAddress?:
|
|
15709
15751
|
string;
|
|
@@ -15730,6 +15772,9 @@ declare namespace gapi.client {
|
|
|
15730
15772
|
/** IP address of the BGP interface outside Google Cloud Platform. Only IPv4 is supported. */
|
|
15731
15773
|
peerIpAddress?:
|
|
15732
15774
|
string;
|
|
15775
|
+
/** IPv4 address of the BGP interface outside Google Cloud Platform. */
|
|
15776
|
+
peerIpv4NexthopAddress?:
|
|
15777
|
+
string;
|
|
15733
15778
|
/** IPv6 address of the BGP interface outside Google Cloud Platform. */
|
|
15734
15779
|
peerIpv6NexthopAddress?:
|
|
15735
15780
|
string;
|
|
@@ -15799,6 +15844,9 @@ declare namespace gapi.client {
|
|
|
15799
15844
|
*/
|
|
15800
15845
|
ipRange?:
|
|
15801
15846
|
string;
|
|
15847
|
+
/** IP version of this interface. */
|
|
15848
|
+
ipVersion?:
|
|
15849
|
+
string;
|
|
15802
15850
|
/**
|
|
15803
15851
|
* URI of the linked Interconnect attachment. It must be in the same region as the router. Each interface can have one linked resource, which can be a VPN tunnel, an Interconnect
|
|
15804
15852
|
* attachment, or a virtual machine instance.
|
|
@@ -17707,6 +17755,9 @@ declare namespace gapi.client {
|
|
|
17707
17755
|
*/
|
|
17708
17756
|
sourceInstantSnapshot?:
|
|
17709
17757
|
string;
|
|
17758
|
+
/** Customer provided encryption key when creating Snapshot from Instant Snapshot. */
|
|
17759
|
+
sourceInstantSnapshotEncryptionKey?:
|
|
17760
|
+
CustomerEncryptionKey;
|
|
17710
17761
|
/**
|
|
17711
17762
|
* [Output Only] The unique ID of the instant snapshot used to create this snapshot. This value identifies the exact instant snapshot that was used to create this persistent disk. For
|
|
17712
17763
|
* example, if you created the persistent disk from an instant snapshot that was later deleted and recreated under the same name, the source instant snapshot ID would identify the
|
|
@@ -18387,6 +18438,9 @@ declare namespace gapi.client {
|
|
|
18387
18438
|
/** Provsioned IOPS of the storage pool. */
|
|
18388
18439
|
provisionedIops?:
|
|
18389
18440
|
string;
|
|
18441
|
+
/** Provisioned throughput of the storage pool. Only relevant if the storage pool type is hyperdisk-balanced or hyperdisk-throughput. */
|
|
18442
|
+
provisionedThroughput?:
|
|
18443
|
+
string;
|
|
18390
18444
|
/** [Output Only] Status information for the storage pool resource. */
|
|
18391
18445
|
resourceStatus?:
|
|
18392
18446
|
StoragePoolResourceStatus;
|
|
@@ -18405,6 +18459,12 @@ declare namespace gapi.client {
|
|
|
18405
18459
|
*/
|
|
18406
18460
|
state?:
|
|
18407
18461
|
string;
|
|
18462
|
+
/** [Output Only] Status information for the storage pool resource. */
|
|
18463
|
+
status?:
|
|
18464
|
+
StoragePoolResourceStatus;
|
|
18465
|
+
/** Type of the storage pool. */
|
|
18466
|
+
storagePoolType?:
|
|
18467
|
+
string;
|
|
18408
18468
|
/** Type of the storage pool */
|
|
18409
18469
|
type?:
|
|
18410
18470
|
string;
|
|
@@ -18461,6 +18521,41 @@ declare namespace gapi.client {
|
|
|
18461
18521
|
string;
|
|
18462
18522
|
};
|
|
18463
18523
|
}
|
|
18524
|
+
interface StoragePoolDisk {
|
|
18525
|
+
/** [Output Only] Instances this disk is attached to. */
|
|
18526
|
+
attachedInstances?:
|
|
18527
|
+
string[];
|
|
18528
|
+
/** [Output Only] Creation timestamp in RFC3339 text format. */
|
|
18529
|
+
creationTimestamp?:
|
|
18530
|
+
string;
|
|
18531
|
+
/** [Output Only] The URL of the disk. */
|
|
18532
|
+
disk?:
|
|
18533
|
+
string;
|
|
18534
|
+
/** [Output Only] The name of the disk. */
|
|
18535
|
+
name?:
|
|
18536
|
+
string;
|
|
18537
|
+
/** [Output Only] The number of IOPS provisioned for the disk. */
|
|
18538
|
+
provisionedIops?:
|
|
18539
|
+
string;
|
|
18540
|
+
/** [Output Only] The throughput provisioned for the disk. */
|
|
18541
|
+
provisionedThroughput?:
|
|
18542
|
+
string;
|
|
18543
|
+
/** [Output Only] Resource policies applied to disk for automatic snapshot creations. */
|
|
18544
|
+
resourcePolicies?:
|
|
18545
|
+
string[];
|
|
18546
|
+
/** [Output Only] The disk size, in GB. */
|
|
18547
|
+
sizeGb?:
|
|
18548
|
+
string;
|
|
18549
|
+
/** [Output Only] The disk status. */
|
|
18550
|
+
status?:
|
|
18551
|
+
string;
|
|
18552
|
+
/** [Output Only] The disk type. */
|
|
18553
|
+
type?:
|
|
18554
|
+
string;
|
|
18555
|
+
/** [Output Only] Amount of disk space used. */
|
|
18556
|
+
usedBytes?:
|
|
18557
|
+
string;
|
|
18558
|
+
}
|
|
18464
18559
|
interface StoragePoolList {
|
|
18465
18560
|
etag?:
|
|
18466
18561
|
string;
|
|
@@ -18510,6 +18605,55 @@ declare namespace gapi.client {
|
|
|
18510
18605
|
string;
|
|
18511
18606
|
};
|
|
18512
18607
|
}
|
|
18608
|
+
interface StoragePoolListDisks {
|
|
18609
|
+
etag?:
|
|
18610
|
+
string;
|
|
18611
|
+
/** [Output Only] Unique identifier for the resource; defined by the server. */
|
|
18612
|
+
id?:
|
|
18613
|
+
string;
|
|
18614
|
+
/** A list of StoragePoolDisk resources. */
|
|
18615
|
+
items?:
|
|
18616
|
+
StoragePoolDisk[];
|
|
18617
|
+
/** [Output Only] Type of resource. Always compute#storagePoolListDisks for lists of disks in a storagePool. */
|
|
18618
|
+
kind?:
|
|
18619
|
+
string;
|
|
18620
|
+
/**
|
|
18621
|
+
* [Output Only] This token allows you to get the next page of results for list requests. If the number of results is larger than maxResults, use the nextPageToken as a value for the
|
|
18622
|
+
* query parameter pageToken in the next list request. Subsequent list requests will have their own nextPageToken to continue paging through the results.
|
|
18623
|
+
*/
|
|
18624
|
+
nextPageToken?:
|
|
18625
|
+
string;
|
|
18626
|
+
/** [Output Only] Server-defined URL for this resource. */
|
|
18627
|
+
selfLink?:
|
|
18628
|
+
string;
|
|
18629
|
+
/** [Output Only] Unreachable resources. end_interface: MixerListResponseWithEtagBuilder */
|
|
18630
|
+
unreachables?:
|
|
18631
|
+
string[];
|
|
18632
|
+
/** [Output Only] Informational warning message. */
|
|
18633
|
+
warning?:
|
|
18634
|
+
{
|
|
18635
|
+
/** [Output Only] A warning code, if applicable. For example, Compute Engine returns NO_RESULTS_ON_PAGE if there are no results in the response. */
|
|
18636
|
+
code?:
|
|
18637
|
+
string;
|
|
18638
|
+
/** [Output Only] Metadata about this warning in key: value format. For example: "data": [ { "key": "scope", "value": "zones/us-east1-d" } */
|
|
18639
|
+
data?:
|
|
18640
|
+
Array<{
|
|
18641
|
+
/**
|
|
18642
|
+
* [Output Only] A key that provides more detail on the warning being returned. For example, for warnings where there are no results in a list request for a particular
|
|
18643
|
+
* zone, this key might be scope and the key value might be the zone name. Other examples might be a key indicating a deprecated resource and a suggested replacement,
|
|
18644
|
+
* or a warning about invalid network settings (for example, if an instance attempts to perform IP forwarding but is not enabled for IP forwarding).
|
|
18645
|
+
*/
|
|
18646
|
+
key?:
|
|
18647
|
+
string;
|
|
18648
|
+
/** [Output Only] A warning data value corresponding to the key. */
|
|
18649
|
+
value?:
|
|
18650
|
+
string;
|
|
18651
|
+
}>;
|
|
18652
|
+
/** [Output Only] A human-readable description of the warning code. */
|
|
18653
|
+
message?:
|
|
18654
|
+
string;
|
|
18655
|
+
};
|
|
18656
|
+
}
|
|
18513
18657
|
interface StoragePoolResourceStatus {
|
|
18514
18658
|
/** [Output Only] Sum of all the disk' provisioned IOPS. */
|
|
18515
18659
|
aggregateDiskProvisionedIops?:
|
|
@@ -18562,6 +18706,11 @@ declare namespace gapi.client {
|
|
|
18562
18706
|
string;
|
|
18563
18707
|
};
|
|
18564
18708
|
}
|
|
18709
|
+
interface StructuredEntries {
|
|
18710
|
+
/** Map of a partner metadata that belong to the same subdomain. It accepts any value including google.protobuf.Struct. */
|
|
18711
|
+
entries?:
|
|
18712
|
+
{ [P in string]: any };
|
|
18713
|
+
}
|
|
18565
18714
|
interface Subnetwork {
|
|
18566
18715
|
/**
|
|
18567
18716
|
* Can only be specified if VPC flow logging for this subnetwork is enabled. Sets the aggregation interval for collecting flow logs. Increasing the interval time reduces the amount of
|
|
@@ -26510,7 +26659,7 @@ declare namespace gapi.client {
|
|
|
26510
26659
|
},
|
|
26511
26660
|
body: DisksStartAsyncReplicationRequest): Request<Operation>;
|
|
26512
26661
|
/** Stops asynchronous replication. Can be invoked either on the primary or on the secondary disk. */
|
|
26513
|
-
stopAsyncReplication(request
|
|
26662
|
+
stopAsyncReplication(request?: {
|
|
26514
26663
|
/** V1 error format. */
|
|
26515
26664
|
"$.xgafv"?:
|
|
26516
26665
|
string;
|
|
@@ -26564,11 +26713,64 @@ declare namespace gapi.client {
|
|
|
26564
26713
|
/** The name of the zone for this request. */
|
|
26565
26714
|
zone:
|
|
26566
26715
|
string;
|
|
26716
|
+
}): Request<Operation>;
|
|
26717
|
+
/** Stops asynchronous replication for a consistency group of disks. Can be invoked either in the primary or secondary scope. */
|
|
26718
|
+
stopGroupAsyncReplication(request: {
|
|
26719
|
+
/** V1 error format. */
|
|
26720
|
+
"$.xgafv"?:
|
|
26721
|
+
string;
|
|
26722
|
+
/** OAuth access token. */
|
|
26723
|
+
access_token?:
|
|
26724
|
+
string;
|
|
26725
|
+
/** Data format for response. */
|
|
26726
|
+
alt?:
|
|
26727
|
+
string;
|
|
26728
|
+
/** JSONP */
|
|
26729
|
+
callback?:
|
|
26730
|
+
string;
|
|
26731
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
26732
|
+
fields?:
|
|
26733
|
+
string;
|
|
26734
|
+
/** 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. */
|
|
26735
|
+
key?:
|
|
26736
|
+
string;
|
|
26737
|
+
/** OAuth 2.0 token for the current user. */
|
|
26738
|
+
oauth_token?:
|
|
26739
|
+
string;
|
|
26740
|
+
/** Returns response with indentations and line breaks. */
|
|
26741
|
+
prettyPrint?:
|
|
26742
|
+
boolean;
|
|
26743
|
+
/** Project ID for this request. */
|
|
26744
|
+
project:
|
|
26745
|
+
string;
|
|
26746
|
+
/** 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. */
|
|
26747
|
+
quotaUser?:
|
|
26748
|
+
string;
|
|
26749
|
+
/**
|
|
26750
|
+
* An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already
|
|
26751
|
+
* been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server
|
|
26752
|
+
* can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate
|
|
26753
|
+
* commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
|
26754
|
+
*/
|
|
26755
|
+
requestId?:
|
|
26756
|
+
string;
|
|
26757
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
26758
|
+
upload_protocol?:
|
|
26759
|
+
string;
|
|
26760
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
26761
|
+
uploadType?:
|
|
26762
|
+
string;
|
|
26763
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
26764
|
+
userIp?:
|
|
26765
|
+
string;
|
|
26766
|
+
/** The name of the zone for this request. This must be the zone of the primary or secondary disks in the consistency group. */
|
|
26767
|
+
zone:
|
|
26768
|
+
string;
|
|
26567
26769
|
/** Request body */
|
|
26568
26770
|
resource:
|
|
26569
|
-
|
|
26771
|
+
DisksStopGroupAsyncReplicationResource;
|
|
26570
26772
|
}): Request<Operation>;
|
|
26571
|
-
|
|
26773
|
+
stopGroupAsyncReplication(request: {
|
|
26572
26774
|
/** V1 error format. */
|
|
26573
26775
|
"$.xgafv"?:
|
|
26574
26776
|
string;
|
|
@@ -26581,9 +26783,6 @@ declare namespace gapi.client {
|
|
|
26581
26783
|
/** JSONP */
|
|
26582
26784
|
callback?:
|
|
26583
26785
|
string;
|
|
26584
|
-
/** The name of the persistent disk. */
|
|
26585
|
-
disk:
|
|
26586
|
-
string;
|
|
26587
26786
|
/** Selector specifying which fields to include in a partial response. */
|
|
26588
26787
|
fields?:
|
|
26589
26788
|
string;
|
|
@@ -26617,15 +26816,67 @@ declare namespace gapi.client {
|
|
|
26617
26816
|
uploadType?:
|
|
26618
26817
|
string;
|
|
26619
26818
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
26819
|
+
userIp?:
|
|
26820
|
+
string;
|
|
26821
|
+
/** The name of the zone for this request. This must be the zone of the primary or secondary disks in the consistency group. */
|
|
26822
|
+
zone:
|
|
26823
|
+
string;
|
|
26824
|
+
},
|
|
26825
|
+
body: DisksStopGroupAsyncReplicationResource): Request<Operation>;
|
|
26826
|
+
/** Returns permissions that a caller has on the specified resource. */
|
|
26827
|
+
testIamPermissions(request: {
|
|
26828
|
+
/** V1 error format. */
|
|
26829
|
+
"$.xgafv"?:
|
|
26830
|
+
string;
|
|
26831
|
+
/** OAuth access token. */
|
|
26832
|
+
access_token?:
|
|
26833
|
+
string;
|
|
26834
|
+
/** Data format for response. */
|
|
26835
|
+
alt?:
|
|
26836
|
+
string;
|
|
26837
|
+
/** JSONP */
|
|
26838
|
+
callback?:
|
|
26839
|
+
string;
|
|
26840
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
26841
|
+
fields?:
|
|
26842
|
+
string;
|
|
26843
|
+
/** 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. */
|
|
26844
|
+
key?:
|
|
26845
|
+
string;
|
|
26846
|
+
/** OAuth 2.0 token for the current user. */
|
|
26847
|
+
oauth_token?:
|
|
26848
|
+
string;
|
|
26849
|
+
/** Returns response with indentations and line breaks. */
|
|
26850
|
+
prettyPrint?:
|
|
26851
|
+
boolean;
|
|
26852
|
+
/** Project ID for this request. */
|
|
26853
|
+
project:
|
|
26854
|
+
string;
|
|
26855
|
+
/** 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. */
|
|
26856
|
+
quotaUser?:
|
|
26857
|
+
string;
|
|
26858
|
+
/** Name or id of the resource for this request. */
|
|
26859
|
+
resource:
|
|
26860
|
+
string;
|
|
26861
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
26862
|
+
upload_protocol?:
|
|
26863
|
+
string;
|
|
26864
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
26865
|
+
uploadType?:
|
|
26866
|
+
string;
|
|
26867
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
26620
26868
|
userIp?:
|
|
26621
26869
|
string;
|
|
26622
26870
|
/** The name of the zone for this request. */
|
|
26623
26871
|
zone:
|
|
26624
26872
|
string;
|
|
26625
26873
|
},
|
|
26626
|
-
body:
|
|
26627
|
-
/**
|
|
26628
|
-
|
|
26874
|
+
body: TestPermissionsRequest): Request<TestPermissionsResponse>;
|
|
26875
|
+
/**
|
|
26876
|
+
* Updates the specified disk with the data included in the request. The update is performed only on selected fields included as part of update-mask. Only the following fields can be
|
|
26877
|
+
* modified: user_license.
|
|
26878
|
+
*/
|
|
26879
|
+
update(request: {
|
|
26629
26880
|
/** V1 error format. */
|
|
26630
26881
|
"$.xgafv"?:
|
|
26631
26882
|
string;
|
|
@@ -26638,6 +26889,9 @@ declare namespace gapi.client {
|
|
|
26638
26889
|
/** JSONP */
|
|
26639
26890
|
callback?:
|
|
26640
26891
|
string;
|
|
26892
|
+
/** The disk name for this request. */
|
|
26893
|
+
disk:
|
|
26894
|
+
string;
|
|
26641
26895
|
/** Selector specifying which fields to include in a partial response. */
|
|
26642
26896
|
fields?:
|
|
26643
26897
|
string;
|
|
@@ -26647,6 +26901,8 @@ declare namespace gapi.client {
|
|
|
26647
26901
|
/** OAuth 2.0 token for the current user. */
|
|
26648
26902
|
oauth_token?:
|
|
26649
26903
|
string;
|
|
26904
|
+
paths?:
|
|
26905
|
+
string | string[];
|
|
26650
26906
|
/** Returns response with indentations and line breaks. */
|
|
26651
26907
|
prettyPrint?:
|
|
26652
26908
|
boolean;
|
|
@@ -26664,6 +26920,9 @@ declare namespace gapi.client {
|
|
|
26664
26920
|
*/
|
|
26665
26921
|
requestId?:
|
|
26666
26922
|
string;
|
|
26923
|
+
/** update_mask indicates fields to be updated as part of this request. */
|
|
26924
|
+
updateMask?:
|
|
26925
|
+
string;
|
|
26667
26926
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
26668
26927
|
upload_protocol?:
|
|
26669
26928
|
string;
|
|
@@ -26673,14 +26932,14 @@ declare namespace gapi.client {
|
|
|
26673
26932
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
26674
26933
|
userIp?:
|
|
26675
26934
|
string;
|
|
26676
|
-
/** The name of the zone for this request.
|
|
26935
|
+
/** The name of the zone for this request. */
|
|
26677
26936
|
zone:
|
|
26678
26937
|
string;
|
|
26679
26938
|
/** Request body */
|
|
26680
26939
|
resource:
|
|
26681
|
-
|
|
26940
|
+
Disk;
|
|
26682
26941
|
}): Request<Operation>;
|
|
26683
|
-
|
|
26942
|
+
update(request: {
|
|
26684
26943
|
/** V1 error format. */
|
|
26685
26944
|
"$.xgafv"?:
|
|
26686
26945
|
string;
|
|
@@ -26693,6 +26952,9 @@ declare namespace gapi.client {
|
|
|
26693
26952
|
/** JSONP */
|
|
26694
26953
|
callback?:
|
|
26695
26954
|
string;
|
|
26955
|
+
/** The disk name for this request. */
|
|
26956
|
+
disk:
|
|
26957
|
+
string;
|
|
26696
26958
|
/** Selector specifying which fields to include in a partial response. */
|
|
26697
26959
|
fields?:
|
|
26698
26960
|
string;
|
|
@@ -26702,6 +26964,8 @@ declare namespace gapi.client {
|
|
|
26702
26964
|
/** OAuth 2.0 token for the current user. */
|
|
26703
26965
|
oauth_token?:
|
|
26704
26966
|
string;
|
|
26967
|
+
paths?:
|
|
26968
|
+
string | string[];
|
|
26705
26969
|
/** Returns response with indentations and line breaks. */
|
|
26706
26970
|
prettyPrint?:
|
|
26707
26971
|
boolean;
|
|
@@ -26719,6 +26983,9 @@ declare namespace gapi.client {
|
|
|
26719
26983
|
*/
|
|
26720
26984
|
requestId?:
|
|
26721
26985
|
string;
|
|
26986
|
+
/** update_mask indicates fields to be updated as part of this request. */
|
|
26987
|
+
updateMask?:
|
|
26988
|
+
string;
|
|
26722
26989
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
26723
26990
|
upload_protocol?:
|
|
26724
26991
|
string;
|
|
@@ -26728,13 +26995,15 @@ declare namespace gapi.client {
|
|
|
26728
26995
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
26729
26996
|
userIp?:
|
|
26730
26997
|
string;
|
|
26731
|
-
/** The name of the zone for this request.
|
|
26998
|
+
/** The name of the zone for this request. */
|
|
26732
26999
|
zone:
|
|
26733
27000
|
string;
|
|
26734
27001
|
},
|
|
26735
|
-
body:
|
|
26736
|
-
|
|
26737
|
-
|
|
27002
|
+
body: Disk): Request<Operation>;
|
|
27003
|
+
}
|
|
27004
|
+
interface DiskSettingsResource {
|
|
27005
|
+
/** Get Zonal Disk Settings. */
|
|
27006
|
+
get(request?: {
|
|
26738
27007
|
/** V1 error format. */
|
|
26739
27008
|
"$.xgafv"?:
|
|
26740
27009
|
string;
|
|
@@ -26765,9 +27034,6 @@ declare namespace gapi.client {
|
|
|
26765
27034
|
/** 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. */
|
|
26766
27035
|
quotaUser?:
|
|
26767
27036
|
string;
|
|
26768
|
-
/** Name or id of the resource for this request. */
|
|
26769
|
-
resource:
|
|
26770
|
-
string;
|
|
26771
27037
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
26772
27038
|
upload_protocol?:
|
|
26773
27039
|
string;
|
|
@@ -26777,16 +27043,12 @@ declare namespace gapi.client {
|
|
|
26777
27043
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
26778
27044
|
userIp?:
|
|
26779
27045
|
string;
|
|
26780
|
-
/**
|
|
27046
|
+
/** Name of the zone for this request. */
|
|
26781
27047
|
zone:
|
|
26782
27048
|
string;
|
|
26783
|
-
}
|
|
26784
|
-
|
|
26785
|
-
|
|
26786
|
-
* Updates the specified disk with the data included in the request. The update is performed only on selected fields included as part of update-mask. Only the following fields can be
|
|
26787
|
-
* modified: user_license.
|
|
26788
|
-
*/
|
|
26789
|
-
update(request: {
|
|
27049
|
+
}): Request<DiskSettings>;
|
|
27050
|
+
/** Patch Zonal Disk Settings */
|
|
27051
|
+
patch(request: {
|
|
26790
27052
|
/** V1 error format. */
|
|
26791
27053
|
"$.xgafv"?:
|
|
26792
27054
|
string;
|
|
@@ -26799,9 +27061,6 @@ declare namespace gapi.client {
|
|
|
26799
27061
|
/** JSONP */
|
|
26800
27062
|
callback?:
|
|
26801
27063
|
string;
|
|
26802
|
-
/** The disk name for this request. */
|
|
26803
|
-
disk:
|
|
26804
|
-
string;
|
|
26805
27064
|
/** Selector specifying which fields to include in a partial response. */
|
|
26806
27065
|
fields?:
|
|
26807
27066
|
string;
|
|
@@ -26811,8 +27070,6 @@ declare namespace gapi.client {
|
|
|
26811
27070
|
/** OAuth 2.0 token for the current user. */
|
|
26812
27071
|
oauth_token?:
|
|
26813
27072
|
string;
|
|
26814
|
-
paths?:
|
|
26815
|
-
string | string[];
|
|
26816
27073
|
/** Returns response with indentations and line breaks. */
|
|
26817
27074
|
prettyPrint?:
|
|
26818
27075
|
boolean;
|
|
@@ -26847,9 +27104,9 @@ declare namespace gapi.client {
|
|
|
26847
27104
|
string;
|
|
26848
27105
|
/** Request body */
|
|
26849
27106
|
resource:
|
|
26850
|
-
|
|
27107
|
+
DiskSettings;
|
|
26851
27108
|
}): Request<Operation>;
|
|
26852
|
-
|
|
27109
|
+
patch(request: {
|
|
26853
27110
|
/** V1 error format. */
|
|
26854
27111
|
"$.xgafv"?:
|
|
26855
27112
|
string;
|
|
@@ -26862,9 +27119,6 @@ declare namespace gapi.client {
|
|
|
26862
27119
|
/** JSONP */
|
|
26863
27120
|
callback?:
|
|
26864
27121
|
string;
|
|
26865
|
-
/** The disk name for this request. */
|
|
26866
|
-
disk:
|
|
26867
|
-
string;
|
|
26868
27122
|
/** Selector specifying which fields to include in a partial response. */
|
|
26869
27123
|
fields?:
|
|
26870
27124
|
string;
|
|
@@ -26874,8 +27128,6 @@ declare namespace gapi.client {
|
|
|
26874
27128
|
/** OAuth 2.0 token for the current user. */
|
|
26875
27129
|
oauth_token?:
|
|
26876
27130
|
string;
|
|
26877
|
-
paths?:
|
|
26878
|
-
string | string[];
|
|
26879
27131
|
/** Returns response with indentations and line breaks. */
|
|
26880
27132
|
prettyPrint?:
|
|
26881
27133
|
boolean;
|
|
@@ -26909,7 +27161,7 @@ declare namespace gapi.client {
|
|
|
26909
27161
|
zone:
|
|
26910
27162
|
string;
|
|
26911
27163
|
},
|
|
26912
|
-
body:
|
|
27164
|
+
body: DiskSettings): Request<Operation>;
|
|
26913
27165
|
}
|
|
26914
27166
|
interface DiskTypesResource {
|
|
26915
27167
|
/** Retrieves an aggregated list of disk types. */
|
|
@@ -40761,6 +41013,57 @@ declare namespace gapi.client {
|
|
|
40761
41013
|
zone:
|
|
40762
41014
|
string;
|
|
40763
41015
|
}): Request<Policy>;
|
|
41016
|
+
/** Gets partner metadata of the specified instance and namespaces. */
|
|
41017
|
+
getPartnerMetadata(request?: {
|
|
41018
|
+
/** V1 error format. */
|
|
41019
|
+
"$.xgafv"?:
|
|
41020
|
+
string;
|
|
41021
|
+
/** OAuth access token. */
|
|
41022
|
+
access_token?:
|
|
41023
|
+
string;
|
|
41024
|
+
/** Data format for response. */
|
|
41025
|
+
alt?:
|
|
41026
|
+
string;
|
|
41027
|
+
/** JSONP */
|
|
41028
|
+
callback?:
|
|
41029
|
+
string;
|
|
41030
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
41031
|
+
fields?:
|
|
41032
|
+
string;
|
|
41033
|
+
/** Name of the instance scoping this request. */
|
|
41034
|
+
instance:
|
|
41035
|
+
string;
|
|
41036
|
+
/** 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. */
|
|
41037
|
+
key?:
|
|
41038
|
+
string;
|
|
41039
|
+
/** Comma separated partner metadata namespaces. */
|
|
41040
|
+
namespaces?:
|
|
41041
|
+
string;
|
|
41042
|
+
/** OAuth 2.0 token for the current user. */
|
|
41043
|
+
oauth_token?:
|
|
41044
|
+
string;
|
|
41045
|
+
/** Returns response with indentations and line breaks. */
|
|
41046
|
+
prettyPrint?:
|
|
41047
|
+
boolean;
|
|
41048
|
+
/** Project ID for this request. */
|
|
41049
|
+
project:
|
|
41050
|
+
string;
|
|
41051
|
+
/** 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. */
|
|
41052
|
+
quotaUser?:
|
|
41053
|
+
string;
|
|
41054
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
41055
|
+
upload_protocol?:
|
|
41056
|
+
string;
|
|
41057
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
41058
|
+
uploadType?:
|
|
41059
|
+
string;
|
|
41060
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
41061
|
+
userIp?:
|
|
41062
|
+
string;
|
|
41063
|
+
/** The name of the zone for this request. */
|
|
41064
|
+
zone:
|
|
41065
|
+
string;
|
|
41066
|
+
}): Request<PartnerMetadata>;
|
|
40764
41067
|
/** Returns the screenshot from the specified instance. */
|
|
40765
41068
|
getScreenshot(request?: {
|
|
40766
41069
|
/** V1 error format. */
|
|
@@ -41270,8 +41573,8 @@ declare namespace gapi.client {
|
|
|
41270
41573
|
zone:
|
|
41271
41574
|
string;
|
|
41272
41575
|
}): Request<InstanceListReferrers>;
|
|
41273
|
-
/**
|
|
41274
|
-
|
|
41576
|
+
/** Patches partner metadata of the specified instance. */
|
|
41577
|
+
patchPartnerMetadata(request: {
|
|
41275
41578
|
/** V1 error format. */
|
|
41276
41579
|
"$.xgafv"?:
|
|
41277
41580
|
string;
|
|
@@ -41325,9 +41628,11 @@ declare namespace gapi.client {
|
|
|
41325
41628
|
/** The name of the zone for this request. */
|
|
41326
41629
|
zone:
|
|
41327
41630
|
string;
|
|
41631
|
+
/** Request body */
|
|
41632
|
+
resource:
|
|
41633
|
+
PartnerMetadata;
|
|
41328
41634
|
}): Request<Operation>;
|
|
41329
|
-
|
|
41330
|
-
removeResourcePolicies(request: {
|
|
41635
|
+
patchPartnerMetadata(request: {
|
|
41331
41636
|
/** V1 error format. */
|
|
41332
41637
|
"$.xgafv"?:
|
|
41333
41638
|
string;
|
|
@@ -41343,7 +41648,7 @@ declare namespace gapi.client {
|
|
|
41343
41648
|
/** Selector specifying which fields to include in a partial response. */
|
|
41344
41649
|
fields?:
|
|
41345
41650
|
string;
|
|
41346
|
-
/**
|
|
41651
|
+
/** Name of the instance scoping this request. */
|
|
41347
41652
|
instance:
|
|
41348
41653
|
string;
|
|
41349
41654
|
/** 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. */
|
|
@@ -41381,11 +41686,10 @@ declare namespace gapi.client {
|
|
|
41381
41686
|
/** The name of the zone for this request. */
|
|
41382
41687
|
zone:
|
|
41383
41688
|
string;
|
|
41384
|
-
|
|
41385
|
-
|
|
41386
|
-
|
|
41387
|
-
|
|
41388
|
-
removeResourcePolicies(request: {
|
|
41689
|
+
},
|
|
41690
|
+
body: PartnerMetadata): Request<Operation>;
|
|
41691
|
+
/** Perform a manual maintenance on the instance. */
|
|
41692
|
+
performMaintenance(request?: {
|
|
41389
41693
|
/** V1 error format. */
|
|
41390
41694
|
"$.xgafv"?:
|
|
41391
41695
|
string;
|
|
@@ -41401,7 +41705,7 @@ declare namespace gapi.client {
|
|
|
41401
41705
|
/** Selector specifying which fields to include in a partial response. */
|
|
41402
41706
|
fields?:
|
|
41403
41707
|
string;
|
|
41404
|
-
/**
|
|
41708
|
+
/** Name of the instance scoping this request. */
|
|
41405
41709
|
instance:
|
|
41406
41710
|
string;
|
|
41407
41711
|
/** 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. */
|
|
@@ -41439,10 +41743,9 @@ declare namespace gapi.client {
|
|
|
41439
41743
|
/** The name of the zone for this request. */
|
|
41440
41744
|
zone:
|
|
41441
41745
|
string;
|
|
41442
|
-
}
|
|
41443
|
-
|
|
41444
|
-
|
|
41445
|
-
reset(request?: {
|
|
41746
|
+
}): Request<Operation>;
|
|
41747
|
+
/** Removes resource policies from an instance. */
|
|
41748
|
+
removeResourcePolicies(request: {
|
|
41446
41749
|
/** V1 error format. */
|
|
41447
41750
|
"$.xgafv"?:
|
|
41448
41751
|
string;
|
|
@@ -41458,7 +41761,7 @@ declare namespace gapi.client {
|
|
|
41458
41761
|
/** Selector specifying which fields to include in a partial response. */
|
|
41459
41762
|
fields?:
|
|
41460
41763
|
string;
|
|
41461
|
-
/**
|
|
41764
|
+
/** The instance name for this request. */
|
|
41462
41765
|
instance:
|
|
41463
41766
|
string;
|
|
41464
41767
|
/** 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. */
|
|
@@ -41496,9 +41799,11 @@ declare namespace gapi.client {
|
|
|
41496
41799
|
/** The name of the zone for this request. */
|
|
41497
41800
|
zone:
|
|
41498
41801
|
string;
|
|
41802
|
+
/** Request body */
|
|
41803
|
+
resource:
|
|
41804
|
+
InstancesRemoveResourcePoliciesRequest;
|
|
41499
41805
|
}): Request<Operation>;
|
|
41500
|
-
|
|
41501
|
-
resume(request: {
|
|
41806
|
+
removeResourcePolicies(request: {
|
|
41502
41807
|
/** V1 error format. */
|
|
41503
41808
|
"$.xgafv"?:
|
|
41504
41809
|
string;
|
|
@@ -41514,7 +41819,7 @@ declare namespace gapi.client {
|
|
|
41514
41819
|
/** Selector specifying which fields to include in a partial response. */
|
|
41515
41820
|
fields?:
|
|
41516
41821
|
string;
|
|
41517
|
-
/**
|
|
41822
|
+
/** The instance name for this request. */
|
|
41518
41823
|
instance:
|
|
41519
41824
|
string;
|
|
41520
41825
|
/** 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. */
|
|
@@ -41552,11 +41857,10 @@ declare namespace gapi.client {
|
|
|
41552
41857
|
/** The name of the zone for this request. */
|
|
41553
41858
|
zone:
|
|
41554
41859
|
string;
|
|
41555
|
-
|
|
41556
|
-
|
|
41557
|
-
|
|
41558
|
-
|
|
41559
|
-
resume(request: {
|
|
41860
|
+
},
|
|
41861
|
+
body: InstancesRemoveResourcePoliciesRequest): Request<Operation>;
|
|
41862
|
+
/** Performs a reset on the instance. This is a hard reset. The VM does not do a graceful shutdown. For more information, see Resetting an instance. */
|
|
41863
|
+
reset(request?: {
|
|
41560
41864
|
/** V1 error format. */
|
|
41561
41865
|
"$.xgafv"?:
|
|
41562
41866
|
string;
|
|
@@ -41572,7 +41876,7 @@ declare namespace gapi.client {
|
|
|
41572
41876
|
/** Selector specifying which fields to include in a partial response. */
|
|
41573
41877
|
fields?:
|
|
41574
41878
|
string;
|
|
41575
|
-
/** Name of the instance
|
|
41879
|
+
/** Name of the instance scoping this request. */
|
|
41576
41880
|
instance:
|
|
41577
41881
|
string;
|
|
41578
41882
|
/** 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. */
|
|
@@ -41610,10 +41914,9 @@ declare namespace gapi.client {
|
|
|
41610
41914
|
/** The name of the zone for this request. */
|
|
41611
41915
|
zone:
|
|
41612
41916
|
string;
|
|
41613
|
-
}
|
|
41614
|
-
|
|
41615
|
-
|
|
41616
|
-
sendDiagnosticInterrupt(request?: {
|
|
41917
|
+
}): Request<Operation>;
|
|
41918
|
+
/** Resumes an instance that was suspended using the instances().suspend method. */
|
|
41919
|
+
resume(request: {
|
|
41617
41920
|
/** V1 error format. */
|
|
41618
41921
|
"$.xgafv"?:
|
|
41619
41922
|
string;
|
|
@@ -41629,7 +41932,7 @@ declare namespace gapi.client {
|
|
|
41629
41932
|
/** Selector specifying which fields to include in a partial response. */
|
|
41630
41933
|
fields?:
|
|
41631
41934
|
string;
|
|
41632
|
-
/** Name of the instance
|
|
41935
|
+
/** Name of the instance resource to resume. */
|
|
41633
41936
|
instance:
|
|
41634
41937
|
string;
|
|
41635
41938
|
/** 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. */
|
|
@@ -41647,6 +41950,14 @@ declare namespace gapi.client {
|
|
|
41647
41950
|
/** 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. */
|
|
41648
41951
|
quotaUser?:
|
|
41649
41952
|
string;
|
|
41953
|
+
/**
|
|
41954
|
+
* An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already
|
|
41955
|
+
* been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server
|
|
41956
|
+
* can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate
|
|
41957
|
+
* commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
|
41958
|
+
*/
|
|
41959
|
+
requestId?:
|
|
41960
|
+
string;
|
|
41650
41961
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
41651
41962
|
upload_protocol?:
|
|
41652
41963
|
string;
|
|
@@ -41659,9 +41970,11 @@ declare namespace gapi.client {
|
|
|
41659
41970
|
/** The name of the zone for this request. */
|
|
41660
41971
|
zone:
|
|
41661
41972
|
string;
|
|
41662
|
-
|
|
41663
|
-
|
|
41664
|
-
|
|
41973
|
+
/** Request body */
|
|
41974
|
+
resource:
|
|
41975
|
+
InstancesResumeRequest;
|
|
41976
|
+
}): Request<Operation>;
|
|
41977
|
+
resume(request: {
|
|
41665
41978
|
/** V1 error format. */
|
|
41666
41979
|
"$.xgafv"?:
|
|
41667
41980
|
string;
|
|
@@ -41674,12 +41987,12 @@ declare namespace gapi.client {
|
|
|
41674
41987
|
/** JSONP */
|
|
41675
41988
|
callback?:
|
|
41676
41989
|
string;
|
|
41677
|
-
/** Whether the resource should be protected against deletion. */
|
|
41678
|
-
deletionProtection?:
|
|
41679
|
-
boolean;
|
|
41680
41990
|
/** Selector specifying which fields to include in a partial response. */
|
|
41681
41991
|
fields?:
|
|
41682
41992
|
string;
|
|
41993
|
+
/** Name of the instance resource to resume. */
|
|
41994
|
+
instance:
|
|
41995
|
+
string;
|
|
41683
41996
|
/** 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. */
|
|
41684
41997
|
key?:
|
|
41685
41998
|
string;
|
|
@@ -41703,9 +42016,6 @@ declare namespace gapi.client {
|
|
|
41703
42016
|
*/
|
|
41704
42017
|
requestId?:
|
|
41705
42018
|
string;
|
|
41706
|
-
/** Name or id of the resource for this request. */
|
|
41707
|
-
resource:
|
|
41708
|
-
string;
|
|
41709
42019
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
41710
42020
|
upload_protocol?:
|
|
41711
42021
|
string;
|
|
@@ -41718,9 +42028,10 @@ declare namespace gapi.client {
|
|
|
41718
42028
|
/** The name of the zone for this request. */
|
|
41719
42029
|
zone:
|
|
41720
42030
|
string;
|
|
41721
|
-
}
|
|
41722
|
-
|
|
41723
|
-
|
|
42031
|
+
},
|
|
42032
|
+
body: InstancesResumeRequest): Request<Operation>;
|
|
42033
|
+
/** Sends diagnostic interrupt to the instance. */
|
|
42034
|
+
sendDiagnosticInterrupt(request?: {
|
|
41724
42035
|
/** V1 error format. */
|
|
41725
42036
|
"$.xgafv"?:
|
|
41726
42037
|
string;
|
|
@@ -41730,19 +42041,13 @@ declare namespace gapi.client {
|
|
|
41730
42041
|
/** Data format for response. */
|
|
41731
42042
|
alt?:
|
|
41732
42043
|
string;
|
|
41733
|
-
/** Whether to auto-delete the disk when the instance is deleted. */
|
|
41734
|
-
autoDelete:
|
|
41735
|
-
boolean;
|
|
41736
42044
|
/** JSONP */
|
|
41737
42045
|
callback?:
|
|
41738
42046
|
string;
|
|
41739
|
-
/** The device name of the disk to modify. Make a get() request on the instance to view currently attached disks and device names. */
|
|
41740
|
-
deviceName:
|
|
41741
|
-
string;
|
|
41742
42047
|
/** Selector specifying which fields to include in a partial response. */
|
|
41743
42048
|
fields?:
|
|
41744
42049
|
string;
|
|
41745
|
-
/**
|
|
42050
|
+
/** Name of the instance scoping this request. */
|
|
41746
42051
|
instance:
|
|
41747
42052
|
string;
|
|
41748
42053
|
/** 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. */
|
|
@@ -41760,14 +42065,6 @@ declare namespace gapi.client {
|
|
|
41760
42065
|
/** 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. */
|
|
41761
42066
|
quotaUser?:
|
|
41762
42067
|
string;
|
|
41763
|
-
/**
|
|
41764
|
-
* An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already
|
|
41765
|
-
* been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server
|
|
41766
|
-
* can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate
|
|
41767
|
-
* commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
|
41768
|
-
*/
|
|
41769
|
-
requestId?:
|
|
41770
|
-
string;
|
|
41771
42068
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
41772
42069
|
upload_protocol?:
|
|
41773
42070
|
string;
|
|
@@ -41780,9 +42077,9 @@ declare namespace gapi.client {
|
|
|
41780
42077
|
/** The name of the zone for this request. */
|
|
41781
42078
|
zone:
|
|
41782
42079
|
string;
|
|
41783
|
-
}): Request<
|
|
41784
|
-
/** Sets
|
|
41785
|
-
|
|
42080
|
+
}): Request<void>;
|
|
42081
|
+
/** Sets deletion protection on the instance. */
|
|
42082
|
+
setDeletionProtection(request?: {
|
|
41786
42083
|
/** V1 error format. */
|
|
41787
42084
|
"$.xgafv"?:
|
|
41788
42085
|
string;
|
|
@@ -41795,6 +42092,9 @@ declare namespace gapi.client {
|
|
|
41795
42092
|
/** JSONP */
|
|
41796
42093
|
callback?:
|
|
41797
42094
|
string;
|
|
42095
|
+
/** Whether the resource should be protected against deletion. */
|
|
42096
|
+
deletionProtection?:
|
|
42097
|
+
boolean;
|
|
41798
42098
|
/** Selector specifying which fields to include in a partial response. */
|
|
41799
42099
|
fields?:
|
|
41800
42100
|
string;
|
|
@@ -41813,6 +42113,14 @@ declare namespace gapi.client {
|
|
|
41813
42113
|
/** 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. */
|
|
41814
42114
|
quotaUser?:
|
|
41815
42115
|
string;
|
|
42116
|
+
/**
|
|
42117
|
+
* An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already
|
|
42118
|
+
* been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server
|
|
42119
|
+
* can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate
|
|
42120
|
+
* commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
|
42121
|
+
*/
|
|
42122
|
+
requestId?:
|
|
42123
|
+
string;
|
|
41816
42124
|
/** Name or id of the resource for this request. */
|
|
41817
42125
|
resource:
|
|
41818
42126
|
string;
|
|
@@ -41828,10 +42136,9 @@ declare namespace gapi.client {
|
|
|
41828
42136
|
/** The name of the zone for this request. */
|
|
41829
42137
|
zone:
|
|
41830
42138
|
string;
|
|
41831
|
-
}
|
|
41832
|
-
|
|
41833
|
-
|
|
41834
|
-
setLabels(request: {
|
|
42139
|
+
}): Request<Operation>;
|
|
42140
|
+
/** Sets the auto-delete flag for a disk attached to an instance. */
|
|
42141
|
+
setDiskAutoDelete(request?: {
|
|
41835
42142
|
/** V1 error format. */
|
|
41836
42143
|
"$.xgafv"?:
|
|
41837
42144
|
string;
|
|
@@ -41841,13 +42148,19 @@ declare namespace gapi.client {
|
|
|
41841
42148
|
/** Data format for response. */
|
|
41842
42149
|
alt?:
|
|
41843
42150
|
string;
|
|
42151
|
+
/** Whether to auto-delete the disk when the instance is deleted. */
|
|
42152
|
+
autoDelete:
|
|
42153
|
+
boolean;
|
|
41844
42154
|
/** JSONP */
|
|
41845
42155
|
callback?:
|
|
41846
42156
|
string;
|
|
42157
|
+
/** The device name of the disk to modify. Make a get() request on the instance to view currently attached disks and device names. */
|
|
42158
|
+
deviceName:
|
|
42159
|
+
string;
|
|
41847
42160
|
/** Selector specifying which fields to include in a partial response. */
|
|
41848
42161
|
fields?:
|
|
41849
42162
|
string;
|
|
41850
|
-
/**
|
|
42163
|
+
/** The instance name for this request. */
|
|
41851
42164
|
instance:
|
|
41852
42165
|
string;
|
|
41853
42166
|
/** 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. */
|
|
@@ -41885,11 +42198,9 @@ declare namespace gapi.client {
|
|
|
41885
42198
|
/** The name of the zone for this request. */
|
|
41886
42199
|
zone:
|
|
41887
42200
|
string;
|
|
41888
|
-
/** Request body */
|
|
41889
|
-
resource:
|
|
41890
|
-
InstancesSetLabelsRequest;
|
|
41891
42201
|
}): Request<Operation>;
|
|
41892
|
-
|
|
42202
|
+
/** Sets the access control policy on the specified resource. Replaces any existing policy. */
|
|
42203
|
+
setIamPolicy(request: {
|
|
41893
42204
|
/** V1 error format. */
|
|
41894
42205
|
"$.xgafv"?:
|
|
41895
42206
|
string;
|
|
@@ -41905,9 +42216,6 @@ declare namespace gapi.client {
|
|
|
41905
42216
|
/** Selector specifying which fields to include in a partial response. */
|
|
41906
42217
|
fields?:
|
|
41907
42218
|
string;
|
|
41908
|
-
/** Name of the instance scoping this request. */
|
|
41909
|
-
instance:
|
|
41910
|
-
string;
|
|
41911
42219
|
/** 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. */
|
|
41912
42220
|
key?:
|
|
41913
42221
|
string;
|
|
@@ -41923,13 +42231,8 @@ declare namespace gapi.client {
|
|
|
41923
42231
|
/** 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. */
|
|
41924
42232
|
quotaUser?:
|
|
41925
42233
|
string;
|
|
41926
|
-
/**
|
|
41927
|
-
|
|
41928
|
-
* been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server
|
|
41929
|
-
* can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate
|
|
41930
|
-
* commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
|
41931
|
-
*/
|
|
41932
|
-
requestId?:
|
|
42234
|
+
/** Name or id of the resource for this request. */
|
|
42235
|
+
resource:
|
|
41933
42236
|
string;
|
|
41934
42237
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
41935
42238
|
upload_protocol?:
|
|
@@ -41944,9 +42247,9 @@ declare namespace gapi.client {
|
|
|
41944
42247
|
zone:
|
|
41945
42248
|
string;
|
|
41946
42249
|
},
|
|
41947
|
-
body:
|
|
41948
|
-
/**
|
|
41949
|
-
|
|
42250
|
+
body: ZoneSetPolicyRequest): Request<Policy>;
|
|
42251
|
+
/** Sets labels on an instance. To learn more about labels, read the Labeling Resources documentation. */
|
|
42252
|
+
setLabels(request: {
|
|
41950
42253
|
/** V1 error format. */
|
|
41951
42254
|
"$.xgafv"?:
|
|
41952
42255
|
string;
|
|
@@ -42002,9 +42305,9 @@ declare namespace gapi.client {
|
|
|
42002
42305
|
string;
|
|
42003
42306
|
/** Request body */
|
|
42004
42307
|
resource:
|
|
42005
|
-
|
|
42308
|
+
InstancesSetLabelsRequest;
|
|
42006
42309
|
}): Request<Operation>;
|
|
42007
|
-
|
|
42310
|
+
setLabels(request: {
|
|
42008
42311
|
/** V1 error format. */
|
|
42009
42312
|
"$.xgafv"?:
|
|
42010
42313
|
string;
|
|
@@ -42059,9 +42362,9 @@ declare namespace gapi.client {
|
|
|
42059
42362
|
zone:
|
|
42060
42363
|
string;
|
|
42061
42364
|
},
|
|
42062
|
-
body:
|
|
42063
|
-
/** Changes the
|
|
42064
|
-
|
|
42365
|
+
body: InstancesSetLabelsRequest): Request<Operation>;
|
|
42366
|
+
/** Changes the number and/or type of accelerator for a stopped instance to the values specified in the request. */
|
|
42367
|
+
setMachineResources(request: {
|
|
42065
42368
|
/** V1 error format. */
|
|
42066
42369
|
"$.xgafv"?:
|
|
42067
42370
|
string;
|
|
@@ -42117,9 +42420,9 @@ declare namespace gapi.client {
|
|
|
42117
42420
|
string;
|
|
42118
42421
|
/** Request body */
|
|
42119
42422
|
resource:
|
|
42120
|
-
|
|
42423
|
+
InstancesSetMachineResourcesRequest;
|
|
42121
42424
|
}): Request<Operation>;
|
|
42122
|
-
|
|
42425
|
+
setMachineResources(request: {
|
|
42123
42426
|
/** V1 error format. */
|
|
42124
42427
|
"$.xgafv"?:
|
|
42125
42428
|
string;
|
|
@@ -42174,9 +42477,9 @@ declare namespace gapi.client {
|
|
|
42174
42477
|
zone:
|
|
42175
42478
|
string;
|
|
42176
42479
|
},
|
|
42177
|
-
body:
|
|
42178
|
-
/**
|
|
42179
|
-
|
|
42480
|
+
body: InstancesSetMachineResourcesRequest): Request<Operation>;
|
|
42481
|
+
/** Changes the machine type for a stopped instance to the machine type specified in the request. */
|
|
42482
|
+
setMachineType(request: {
|
|
42180
42483
|
/** V1 error format. */
|
|
42181
42484
|
"$.xgafv"?:
|
|
42182
42485
|
string;
|
|
@@ -42232,9 +42535,9 @@ declare namespace gapi.client {
|
|
|
42232
42535
|
string;
|
|
42233
42536
|
/** Request body */
|
|
42234
42537
|
resource:
|
|
42235
|
-
|
|
42538
|
+
InstancesSetMachineTypeRequest;
|
|
42236
42539
|
}): Request<Operation>;
|
|
42237
|
-
|
|
42540
|
+
setMachineType(request: {
|
|
42238
42541
|
/** V1 error format. */
|
|
42239
42542
|
"$.xgafv"?:
|
|
42240
42543
|
string;
|
|
@@ -42289,9 +42592,9 @@ declare namespace gapi.client {
|
|
|
42289
42592
|
zone:
|
|
42290
42593
|
string;
|
|
42291
42594
|
},
|
|
42292
|
-
body:
|
|
42293
|
-
/**
|
|
42294
|
-
|
|
42595
|
+
body: InstancesSetMachineTypeRequest): Request<Operation>;
|
|
42596
|
+
/** Sets metadata for the specified instance to the data included in the request. */
|
|
42597
|
+
setMetadata(request: {
|
|
42295
42598
|
/** V1 error format. */
|
|
42296
42599
|
"$.xgafv"?:
|
|
42297
42600
|
string;
|
|
@@ -42347,9 +42650,9 @@ declare namespace gapi.client {
|
|
|
42347
42650
|
string;
|
|
42348
42651
|
/** Request body */
|
|
42349
42652
|
resource:
|
|
42350
|
-
|
|
42653
|
+
Metadata;
|
|
42351
42654
|
}): Request<Operation>;
|
|
42352
|
-
|
|
42655
|
+
setMetadata(request: {
|
|
42353
42656
|
/** V1 error format. */
|
|
42354
42657
|
"$.xgafv"?:
|
|
42355
42658
|
string;
|
|
@@ -42404,9 +42707,9 @@ declare namespace gapi.client {
|
|
|
42404
42707
|
zone:
|
|
42405
42708
|
string;
|
|
42406
42709
|
},
|
|
42407
|
-
body:
|
|
42408
|
-
/**
|
|
42409
|
-
|
|
42710
|
+
body: Metadata): Request<Operation>;
|
|
42711
|
+
/** Changes the minimum CPU platform that this instance should use. This method can only be called on a stopped instance. For more information, read Specifying a Minimum CPU Platform. */
|
|
42712
|
+
setMinCpuPlatform(request: {
|
|
42410
42713
|
/** V1 error format. */
|
|
42411
42714
|
"$.xgafv"?:
|
|
42412
42715
|
string;
|
|
@@ -42422,7 +42725,7 @@ declare namespace gapi.client {
|
|
|
42422
42725
|
/** Selector specifying which fields to include in a partial response. */
|
|
42423
42726
|
fields?:
|
|
42424
42727
|
string;
|
|
42425
|
-
/**
|
|
42728
|
+
/** Name of the instance scoping this request. */
|
|
42426
42729
|
instance:
|
|
42427
42730
|
string;
|
|
42428
42731
|
/** 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. */
|
|
@@ -42462,9 +42765,9 @@ declare namespace gapi.client {
|
|
|
42462
42765
|
string;
|
|
42463
42766
|
/** Request body */
|
|
42464
42767
|
resource:
|
|
42465
|
-
|
|
42768
|
+
InstancesSetMinCpuPlatformRequest;
|
|
42466
42769
|
}): Request<Operation>;
|
|
42467
|
-
|
|
42770
|
+
setMinCpuPlatform(request: {
|
|
42468
42771
|
/** V1 error format. */
|
|
42469
42772
|
"$.xgafv"?:
|
|
42470
42773
|
string;
|
|
@@ -42480,7 +42783,7 @@ declare namespace gapi.client {
|
|
|
42480
42783
|
/** Selector specifying which fields to include in a partial response. */
|
|
42481
42784
|
fields?:
|
|
42482
42785
|
string;
|
|
42483
|
-
/**
|
|
42786
|
+
/** Name of the instance scoping this request. */
|
|
42484
42787
|
instance:
|
|
42485
42788
|
string;
|
|
42486
42789
|
/** 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. */
|
|
@@ -42519,12 +42822,9 @@ declare namespace gapi.client {
|
|
|
42519
42822
|
zone:
|
|
42520
42823
|
string;
|
|
42521
42824
|
},
|
|
42522
|
-
body:
|
|
42523
|
-
/**
|
|
42524
|
-
|
|
42525
|
-
* information on the possible instance states. For more information about setting scheduling options for a VM, see Set VM host maintenance policy.
|
|
42526
|
-
*/
|
|
42527
|
-
setScheduling(request: {
|
|
42825
|
+
body: InstancesSetMinCpuPlatformRequest): Request<Operation>;
|
|
42826
|
+
/** Sets name of an instance. */
|
|
42827
|
+
setName(request: {
|
|
42528
42828
|
/** V1 error format. */
|
|
42529
42829
|
"$.xgafv"?:
|
|
42530
42830
|
string;
|
|
@@ -42540,7 +42840,7 @@ declare namespace gapi.client {
|
|
|
42540
42840
|
/** Selector specifying which fields to include in a partial response. */
|
|
42541
42841
|
fields?:
|
|
42542
42842
|
string;
|
|
42543
|
-
/**
|
|
42843
|
+
/** The instance name for this request. */
|
|
42544
42844
|
instance:
|
|
42545
42845
|
string;
|
|
42546
42846
|
/** 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. */
|
|
@@ -42580,9 +42880,9 @@ declare namespace gapi.client {
|
|
|
42580
42880
|
string;
|
|
42581
42881
|
/** Request body */
|
|
42582
42882
|
resource:
|
|
42583
|
-
|
|
42883
|
+
InstancesSetNameRequest;
|
|
42584
42884
|
}): Request<Operation>;
|
|
42585
|
-
|
|
42885
|
+
setName(request: {
|
|
42586
42886
|
/** V1 error format. */
|
|
42587
42887
|
"$.xgafv"?:
|
|
42588
42888
|
string;
|
|
@@ -42598,7 +42898,7 @@ declare namespace gapi.client {
|
|
|
42598
42898
|
/** Selector specifying which fields to include in a partial response. */
|
|
42599
42899
|
fields?:
|
|
42600
42900
|
string;
|
|
42601
|
-
/**
|
|
42901
|
+
/** The instance name for this request. */
|
|
42602
42902
|
instance:
|
|
42603
42903
|
string;
|
|
42604
42904
|
/** 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. */
|
|
@@ -42637,9 +42937,12 @@ declare namespace gapi.client {
|
|
|
42637
42937
|
zone:
|
|
42638
42938
|
string;
|
|
42639
42939
|
},
|
|
42640
|
-
body:
|
|
42641
|
-
/**
|
|
42642
|
-
|
|
42940
|
+
body: InstancesSetNameRequest): Request<Operation>;
|
|
42941
|
+
/**
|
|
42942
|
+
* Sets an instance's scheduling options. You can only call this method on a stopped instance, that is, a VM instance that is in a `TERMINATED` state. See Instance Life Cycle for more
|
|
42943
|
+
* information on the possible instance states. For more information about setting scheduling options for a VM, see Set VM host maintenance policy.
|
|
42944
|
+
*/
|
|
42945
|
+
setScheduling(request: {
|
|
42643
42946
|
/** V1 error format. */
|
|
42644
42947
|
"$.xgafv"?:
|
|
42645
42948
|
string;
|
|
@@ -42655,7 +42958,7 @@ declare namespace gapi.client {
|
|
|
42655
42958
|
/** Selector specifying which fields to include in a partial response. */
|
|
42656
42959
|
fields?:
|
|
42657
42960
|
string;
|
|
42658
|
-
/**
|
|
42961
|
+
/** Instance name for this request. */
|
|
42659
42962
|
instance:
|
|
42660
42963
|
string;
|
|
42661
42964
|
/** 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. */
|
|
@@ -42690,14 +42993,14 @@ declare namespace gapi.client {
|
|
|
42690
42993
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
42691
42994
|
userIp?:
|
|
42692
42995
|
string;
|
|
42693
|
-
/**
|
|
42996
|
+
/** The name of the zone for this request. */
|
|
42694
42997
|
zone:
|
|
42695
42998
|
string;
|
|
42696
42999
|
/** Request body */
|
|
42697
43000
|
resource:
|
|
42698
|
-
|
|
43001
|
+
Scheduling;
|
|
42699
43002
|
}): Request<Operation>;
|
|
42700
|
-
|
|
43003
|
+
setScheduling(request: {
|
|
42701
43004
|
/** V1 error format. */
|
|
42702
43005
|
"$.xgafv"?:
|
|
42703
43006
|
string;
|
|
@@ -42713,7 +43016,7 @@ declare namespace gapi.client {
|
|
|
42713
43016
|
/** Selector specifying which fields to include in a partial response. */
|
|
42714
43017
|
fields?:
|
|
42715
43018
|
string;
|
|
42716
|
-
/**
|
|
43019
|
+
/** Instance name for this request. */
|
|
42717
43020
|
instance:
|
|
42718
43021
|
string;
|
|
42719
43022
|
/** 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. */
|
|
@@ -42748,13 +43051,13 @@ declare namespace gapi.client {
|
|
|
42748
43051
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
42749
43052
|
userIp?:
|
|
42750
43053
|
string;
|
|
42751
|
-
/**
|
|
43054
|
+
/** The name of the zone for this request. */
|
|
42752
43055
|
zone:
|
|
42753
43056
|
string;
|
|
42754
43057
|
},
|
|
42755
|
-
body:
|
|
42756
|
-
/** Sets the
|
|
42757
|
-
|
|
43058
|
+
body: Scheduling): Request<Operation>;
|
|
43059
|
+
/** Sets the Google Cloud Armor security policy for the specified instance. For more information, see Google Cloud Armor Overview */
|
|
43060
|
+
setSecurityPolicy(request: {
|
|
42758
43061
|
/** V1 error format. */
|
|
42759
43062
|
"$.xgafv"?:
|
|
42760
43063
|
string;
|
|
@@ -42770,7 +43073,7 @@ declare namespace gapi.client {
|
|
|
42770
43073
|
/** Selector specifying which fields to include in a partial response. */
|
|
42771
43074
|
fields?:
|
|
42772
43075
|
string;
|
|
42773
|
-
/** Name of the
|
|
43076
|
+
/** Name of the Instance resource to which the security policy should be set. The name should conform to RFC1035. */
|
|
42774
43077
|
instance:
|
|
42775
43078
|
string;
|
|
42776
43079
|
/** 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. */
|
|
@@ -42805,14 +43108,14 @@ declare namespace gapi.client {
|
|
|
42805
43108
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
42806
43109
|
userIp?:
|
|
42807
43110
|
string;
|
|
42808
|
-
/**
|
|
43111
|
+
/** Name of the zone scoping this request. */
|
|
42809
43112
|
zone:
|
|
42810
43113
|
string;
|
|
42811
43114
|
/** Request body */
|
|
42812
43115
|
resource:
|
|
42813
|
-
|
|
43116
|
+
InstancesSetSecurityPolicyRequest;
|
|
42814
43117
|
}): Request<Operation>;
|
|
42815
|
-
|
|
43118
|
+
setSecurityPolicy(request: {
|
|
42816
43119
|
/** V1 error format. */
|
|
42817
43120
|
"$.xgafv"?:
|
|
42818
43121
|
string;
|
|
@@ -42828,7 +43131,7 @@ declare namespace gapi.client {
|
|
|
42828
43131
|
/** Selector specifying which fields to include in a partial response. */
|
|
42829
43132
|
fields?:
|
|
42830
43133
|
string;
|
|
42831
|
-
/** Name of the
|
|
43134
|
+
/** Name of the Instance resource to which the security policy should be set. The name should conform to RFC1035. */
|
|
42832
43135
|
instance:
|
|
42833
43136
|
string;
|
|
42834
43137
|
/** 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. */
|
|
@@ -42863,16 +43166,13 @@ declare namespace gapi.client {
|
|
|
42863
43166
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
42864
43167
|
userIp?:
|
|
42865
43168
|
string;
|
|
42866
|
-
/**
|
|
43169
|
+
/** Name of the zone scoping this request. */
|
|
42867
43170
|
zone:
|
|
42868
43171
|
string;
|
|
42869
43172
|
},
|
|
42870
|
-
body:
|
|
42871
|
-
/**
|
|
42872
|
-
|
|
42873
|
-
* format and processing rules.
|
|
42874
|
-
*/
|
|
42875
|
-
setShieldedInstanceIntegrityPolicy(request: {
|
|
43173
|
+
body: InstancesSetSecurityPolicyRequest): Request<Operation>;
|
|
43174
|
+
/** Sets the service account on the instance. For more information, read Changing the service account and access scopes for an instance. */
|
|
43175
|
+
setServiceAccount(request: {
|
|
42876
43176
|
/** V1 error format. */
|
|
42877
43177
|
"$.xgafv"?:
|
|
42878
43178
|
string;
|
|
@@ -42888,7 +43188,7 @@ declare namespace gapi.client {
|
|
|
42888
43188
|
/** Selector specifying which fields to include in a partial response. */
|
|
42889
43189
|
fields?:
|
|
42890
43190
|
string;
|
|
42891
|
-
/** Name
|
|
43191
|
+
/** Name of the instance resource to start. */
|
|
42892
43192
|
instance:
|
|
42893
43193
|
string;
|
|
42894
43194
|
/** 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. */
|
|
@@ -42928,9 +43228,9 @@ declare namespace gapi.client {
|
|
|
42928
43228
|
string;
|
|
42929
43229
|
/** Request body */
|
|
42930
43230
|
resource:
|
|
42931
|
-
|
|
43231
|
+
InstancesSetServiceAccountRequest;
|
|
42932
43232
|
}): Request<Operation>;
|
|
42933
|
-
|
|
43233
|
+
setServiceAccount(request: {
|
|
42934
43234
|
/** V1 error format. */
|
|
42935
43235
|
"$.xgafv"?:
|
|
42936
43236
|
string;
|
|
@@ -42946,7 +43246,7 @@ declare namespace gapi.client {
|
|
|
42946
43246
|
/** Selector specifying which fields to include in a partial response. */
|
|
42947
43247
|
fields?:
|
|
42948
43248
|
string;
|
|
42949
|
-
/** Name
|
|
43249
|
+
/** Name of the instance resource to start. */
|
|
42950
43250
|
instance:
|
|
42951
43251
|
string;
|
|
42952
43252
|
/** 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. */
|
|
@@ -42985,12 +43285,12 @@ declare namespace gapi.client {
|
|
|
42985
43285
|
zone:
|
|
42986
43286
|
string;
|
|
42987
43287
|
},
|
|
42988
|
-
body:
|
|
43288
|
+
body: InstancesSetServiceAccountRequest): Request<Operation>;
|
|
42989
43289
|
/**
|
|
42990
|
-
* Sets the Shielded
|
|
43290
|
+
* Sets the Shielded Instance integrity policy for an instance. You can only use this method on a running instance. This method supports PATCH semantics and uses the JSON merge patch
|
|
42991
43291
|
* format and processing rules.
|
|
42992
43292
|
*/
|
|
42993
|
-
|
|
43293
|
+
setShieldedInstanceIntegrityPolicy(request: {
|
|
42994
43294
|
/** V1 error format. */
|
|
42995
43295
|
"$.xgafv"?:
|
|
42996
43296
|
string;
|
|
@@ -43006,7 +43306,7 @@ declare namespace gapi.client {
|
|
|
43006
43306
|
/** Selector specifying which fields to include in a partial response. */
|
|
43007
43307
|
fields?:
|
|
43008
43308
|
string;
|
|
43009
|
-
/** Name of the instance scoping this request. */
|
|
43309
|
+
/** Name or id of the instance scoping this request. */
|
|
43010
43310
|
instance:
|
|
43011
43311
|
string;
|
|
43012
43312
|
/** 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. */
|
|
@@ -43046,9 +43346,9 @@ declare namespace gapi.client {
|
|
|
43046
43346
|
string;
|
|
43047
43347
|
/** Request body */
|
|
43048
43348
|
resource:
|
|
43049
|
-
|
|
43349
|
+
ShieldedInstanceIntegrityPolicy;
|
|
43050
43350
|
}): Request<Operation>;
|
|
43051
|
-
|
|
43351
|
+
setShieldedInstanceIntegrityPolicy(request: {
|
|
43052
43352
|
/** V1 error format. */
|
|
43053
43353
|
"$.xgafv"?:
|
|
43054
43354
|
string;
|
|
@@ -43064,7 +43364,7 @@ declare namespace gapi.client {
|
|
|
43064
43364
|
/** Selector specifying which fields to include in a partial response. */
|
|
43065
43365
|
fields?:
|
|
43066
43366
|
string;
|
|
43067
|
-
/** Name of the instance scoping this request. */
|
|
43367
|
+
/** Name or id of the instance scoping this request. */
|
|
43068
43368
|
instance:
|
|
43069
43369
|
string;
|
|
43070
43370
|
/** 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. */
|
|
@@ -43103,9 +43403,12 @@ declare namespace gapi.client {
|
|
|
43103
43403
|
zone:
|
|
43104
43404
|
string;
|
|
43105
43405
|
},
|
|
43106
|
-
body:
|
|
43107
|
-
/**
|
|
43108
|
-
|
|
43406
|
+
body: ShieldedInstanceIntegrityPolicy): Request<Operation>;
|
|
43407
|
+
/**
|
|
43408
|
+
* Sets the Shielded VM integrity policy for a VM instance. You can only use this method on a running VM instance. This method supports PATCH semantics and uses the JSON merge patch
|
|
43409
|
+
* format and processing rules.
|
|
43410
|
+
*/
|
|
43411
|
+
setShieldedVmIntegrityPolicy(request: {
|
|
43109
43412
|
/** V1 error format. */
|
|
43110
43413
|
"$.xgafv"?:
|
|
43111
43414
|
string;
|
|
@@ -43161,9 +43464,9 @@ declare namespace gapi.client {
|
|
|
43161
43464
|
string;
|
|
43162
43465
|
/** Request body */
|
|
43163
43466
|
resource:
|
|
43164
|
-
|
|
43467
|
+
ShieldedVmIntegrityPolicy;
|
|
43165
43468
|
}): Request<Operation>;
|
|
43166
|
-
|
|
43469
|
+
setShieldedVmIntegrityPolicy(request: {
|
|
43167
43470
|
/** V1 error format. */
|
|
43168
43471
|
"$.xgafv"?:
|
|
43169
43472
|
string;
|
|
@@ -43218,9 +43521,9 @@ declare namespace gapi.client {
|
|
|
43218
43521
|
zone:
|
|
43219
43522
|
string;
|
|
43220
43523
|
},
|
|
43221
|
-
body:
|
|
43222
|
-
/**
|
|
43223
|
-
|
|
43524
|
+
body: ShieldedVmIntegrityPolicy): Request<Operation>;
|
|
43525
|
+
/** Sets network tags for the specified instance to the data included in the request. */
|
|
43526
|
+
setTags(request: {
|
|
43224
43527
|
/** V1 error format. */
|
|
43225
43528
|
"$.xgafv"?:
|
|
43226
43529
|
string;
|
|
@@ -43271,15 +43574,14 @@ declare namespace gapi.client {
|
|
|
43271
43574
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
43272
43575
|
userIp?:
|
|
43273
43576
|
string;
|
|
43274
|
-
/** Determines whether the customers receive notifications before migration. Only applicable to SF vms. */
|
|
43275
|
-
withExtendedNotifications?:
|
|
43276
|
-
boolean;
|
|
43277
43577
|
/** The name of the zone for this request. */
|
|
43278
43578
|
zone:
|
|
43279
43579
|
string;
|
|
43580
|
+
/** Request body */
|
|
43581
|
+
resource:
|
|
43582
|
+
Tags;
|
|
43280
43583
|
}): Request<Operation>;
|
|
43281
|
-
|
|
43282
|
-
start(request?: {
|
|
43584
|
+
setTags(request: {
|
|
43283
43585
|
/** V1 error format. */
|
|
43284
43586
|
"$.xgafv"?:
|
|
43285
43587
|
string;
|
|
@@ -43295,7 +43597,7 @@ declare namespace gapi.client {
|
|
|
43295
43597
|
/** Selector specifying which fields to include in a partial response. */
|
|
43296
43598
|
fields?:
|
|
43297
43599
|
string;
|
|
43298
|
-
/** Name of the instance
|
|
43600
|
+
/** Name of the instance scoping this request. */
|
|
43299
43601
|
instance:
|
|
43300
43602
|
string;
|
|
43301
43603
|
/** 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. */
|
|
@@ -43333,9 +43635,10 @@ declare namespace gapi.client {
|
|
|
43333
43635
|
/** The name of the zone for this request. */
|
|
43334
43636
|
zone:
|
|
43335
43637
|
string;
|
|
43336
|
-
}
|
|
43337
|
-
|
|
43338
|
-
|
|
43638
|
+
},
|
|
43639
|
+
body: Tags): Request<Operation>;
|
|
43640
|
+
/** Simulates a host maintenance event on a VM. For more information, see Simulate a host maintenance event. */
|
|
43641
|
+
simulateMaintenanceEvent(request?: {
|
|
43339
43642
|
/** V1 error format. */
|
|
43340
43643
|
"$.xgafv"?:
|
|
43341
43644
|
string;
|
|
@@ -43351,7 +43654,7 @@ declare namespace gapi.client {
|
|
|
43351
43654
|
/** Selector specifying which fields to include in a partial response. */
|
|
43352
43655
|
fields?:
|
|
43353
43656
|
string;
|
|
43354
|
-
/** Name of the instance
|
|
43657
|
+
/** Name of the instance scoping this request. */
|
|
43355
43658
|
instance:
|
|
43356
43659
|
string;
|
|
43357
43660
|
/** 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. */
|
|
@@ -43386,14 +43689,15 @@ declare namespace gapi.client {
|
|
|
43386
43689
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
43387
43690
|
userIp?:
|
|
43388
43691
|
string;
|
|
43692
|
+
/** Determines whether the customers receive notifications before migration. Only applicable to SF vms. */
|
|
43693
|
+
withExtendedNotifications?:
|
|
43694
|
+
boolean;
|
|
43389
43695
|
/** The name of the zone for this request. */
|
|
43390
43696
|
zone:
|
|
43391
43697
|
string;
|
|
43392
|
-
/** Request body */
|
|
43393
|
-
resource:
|
|
43394
|
-
InstancesStartWithEncryptionKeyRequest;
|
|
43395
43698
|
}): Request<Operation>;
|
|
43396
|
-
|
|
43699
|
+
/** Starts an instance that was stopped using the instances().stop method. For more information, see Restart an instance. */
|
|
43700
|
+
start(request?: {
|
|
43397
43701
|
/** V1 error format. */
|
|
43398
43702
|
"$.xgafv"?:
|
|
43399
43703
|
string;
|
|
@@ -43447,14 +43751,9 @@ declare namespace gapi.client {
|
|
|
43447
43751
|
/** The name of the zone for this request. */
|
|
43448
43752
|
zone:
|
|
43449
43753
|
string;
|
|
43450
|
-
}
|
|
43451
|
-
|
|
43452
|
-
|
|
43453
|
-
* Stops a running instance, shutting it down cleanly, and allows you to restart the instance at a later time. Stopped instances do not incur VM usage charges while they are stopped.
|
|
43454
|
-
* However, resources that the VM is using, such as persistent disks and static IP addresses, will continue to be charged until they are deleted. For more information, see Stopping an
|
|
43455
|
-
* instance.
|
|
43456
|
-
*/
|
|
43457
|
-
stop(request?: {
|
|
43754
|
+
}): Request<Operation>;
|
|
43755
|
+
/** Starts an instance that was stopped using the instances().stop method. For more information, see Restart an instance. */
|
|
43756
|
+
startWithEncryptionKey(request: {
|
|
43458
43757
|
/** V1 error format. */
|
|
43459
43758
|
"$.xgafv"?:
|
|
43460
43759
|
string;
|
|
@@ -43467,13 +43766,10 @@ declare namespace gapi.client {
|
|
|
43467
43766
|
/** JSONP */
|
|
43468
43767
|
callback?:
|
|
43469
43768
|
string;
|
|
43470
|
-
/** If true, discard the contents of any attached localSSD partitions. Default value is false. */
|
|
43471
|
-
discardLocalSsd?:
|
|
43472
|
-
boolean;
|
|
43473
43769
|
/** Selector specifying which fields to include in a partial response. */
|
|
43474
43770
|
fields?:
|
|
43475
43771
|
string;
|
|
43476
|
-
/** Name of the instance resource to
|
|
43772
|
+
/** Name of the instance resource to start. */
|
|
43477
43773
|
instance:
|
|
43478
43774
|
string;
|
|
43479
43775
|
/** 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. */
|
|
@@ -43511,13 +43807,11 @@ declare namespace gapi.client {
|
|
|
43511
43807
|
/** The name of the zone for this request. */
|
|
43512
43808
|
zone:
|
|
43513
43809
|
string;
|
|
43810
|
+
/** Request body */
|
|
43811
|
+
resource:
|
|
43812
|
+
InstancesStartWithEncryptionKeyRequest;
|
|
43514
43813
|
}): Request<Operation>;
|
|
43515
|
-
|
|
43516
|
-
* This method suspends a running instance, saving its state to persistent storage, and allows you to resume the instance at a later time. Suspended instances have no compute costs
|
|
43517
|
-
* (cores or RAM), and incur only storage charges for the saved VM memory and localSSD data. Any charged resources the virtual machine was using, such as persistent disks and static IP
|
|
43518
|
-
* addresses, will continue to be charged while the instance is suspended. For more information, see Suspending and resuming an instance.
|
|
43519
|
-
*/
|
|
43520
|
-
suspend(request?: {
|
|
43814
|
+
startWithEncryptionKey(request: {
|
|
43521
43815
|
/** V1 error format. */
|
|
43522
43816
|
"$.xgafv"?:
|
|
43523
43817
|
string;
|
|
@@ -43530,13 +43824,10 @@ declare namespace gapi.client {
|
|
|
43530
43824
|
/** JSONP */
|
|
43531
43825
|
callback?:
|
|
43532
43826
|
string;
|
|
43533
|
-
/** If true, discard the contents of any attached localSSD partitions. Default value is false. */
|
|
43534
|
-
discardLocalSsd?:
|
|
43535
|
-
boolean;
|
|
43536
43827
|
/** Selector specifying which fields to include in a partial response. */
|
|
43537
43828
|
fields?:
|
|
43538
43829
|
string;
|
|
43539
|
-
/** Name of the instance resource to
|
|
43830
|
+
/** Name of the instance resource to start. */
|
|
43540
43831
|
instance:
|
|
43541
43832
|
string;
|
|
43542
43833
|
/** 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. */
|
|
@@ -43574,61 +43865,14 @@ declare namespace gapi.client {
|
|
|
43574
43865
|
/** The name of the zone for this request. */
|
|
43575
43866
|
zone:
|
|
43576
43867
|
string;
|
|
43577
|
-
}): Request<Operation>;
|
|
43578
|
-
/** Returns permissions that a caller has on the specified resource. */
|
|
43579
|
-
testIamPermissions(request: {
|
|
43580
|
-
/** V1 error format. */
|
|
43581
|
-
"$.xgafv"?:
|
|
43582
|
-
string;
|
|
43583
|
-
/** OAuth access token. */
|
|
43584
|
-
access_token?:
|
|
43585
|
-
string;
|
|
43586
|
-
/** Data format for response. */
|
|
43587
|
-
alt?:
|
|
43588
|
-
string;
|
|
43589
|
-
/** JSONP */
|
|
43590
|
-
callback?:
|
|
43591
|
-
string;
|
|
43592
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
43593
|
-
fields?:
|
|
43594
|
-
string;
|
|
43595
|
-
/** 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. */
|
|
43596
|
-
key?:
|
|
43597
|
-
string;
|
|
43598
|
-
/** OAuth 2.0 token for the current user. */
|
|
43599
|
-
oauth_token?:
|
|
43600
|
-
string;
|
|
43601
|
-
/** Returns response with indentations and line breaks. */
|
|
43602
|
-
prettyPrint?:
|
|
43603
|
-
boolean;
|
|
43604
|
-
/** Project ID for this request. */
|
|
43605
|
-
project:
|
|
43606
|
-
string;
|
|
43607
|
-
/** 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. */
|
|
43608
|
-
quotaUser?:
|
|
43609
|
-
string;
|
|
43610
|
-
/** Name or id of the resource for this request. */
|
|
43611
|
-
resource:
|
|
43612
|
-
string;
|
|
43613
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
43614
|
-
upload_protocol?:
|
|
43615
|
-
string;
|
|
43616
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
43617
|
-
uploadType?:
|
|
43618
|
-
string;
|
|
43619
|
-
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
43620
|
-
userIp?:
|
|
43621
|
-
string;
|
|
43622
|
-
/** The name of the zone for this request. */
|
|
43623
|
-
zone:
|
|
43624
|
-
string;
|
|
43625
43868
|
},
|
|
43626
|
-
body:
|
|
43869
|
+
body: InstancesStartWithEncryptionKeyRequest): Request<Operation>;
|
|
43627
43870
|
/**
|
|
43628
|
-
*
|
|
43629
|
-
*
|
|
43871
|
+
* Stops a running instance, shutting it down cleanly, and allows you to restart the instance at a later time. Stopped instances do not incur VM usage charges while they are stopped.
|
|
43872
|
+
* However, resources that the VM is using, such as persistent disks and static IP addresses, will continue to be charged until they are deleted. For more information, see Stopping an
|
|
43873
|
+
* instance.
|
|
43630
43874
|
*/
|
|
43631
|
-
|
|
43875
|
+
stop(request?: {
|
|
43632
43876
|
/** V1 error format. */
|
|
43633
43877
|
"$.xgafv"?:
|
|
43634
43878
|
string;
|
|
@@ -43641,30 +43885,204 @@ declare namespace gapi.client {
|
|
|
43641
43885
|
/** JSONP */
|
|
43642
43886
|
callback?:
|
|
43643
43887
|
string;
|
|
43644
|
-
/**
|
|
43645
|
-
|
|
43888
|
+
/** If true, discard the contents of any attached localSSD partitions. Default value is false. */
|
|
43889
|
+
discardLocalSsd?:
|
|
43646
43890
|
boolean;
|
|
43647
43891
|
/** Selector specifying which fields to include in a partial response. */
|
|
43648
43892
|
fields?:
|
|
43649
43893
|
string;
|
|
43650
|
-
/** Name of the instance resource to
|
|
43894
|
+
/** Name of the instance resource to stop. */
|
|
43651
43895
|
instance:
|
|
43652
43896
|
string;
|
|
43653
43897
|
/** 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. */
|
|
43654
43898
|
key?:
|
|
43655
43899
|
string;
|
|
43656
|
-
/**
|
|
43657
|
-
|
|
43658
|
-
|
|
43659
|
-
|
|
43660
|
-
|
|
43661
|
-
|
|
43662
|
-
/**
|
|
43663
|
-
|
|
43664
|
-
|
|
43665
|
-
|
|
43666
|
-
|
|
43667
|
-
string;
|
|
43900
|
+
/** OAuth 2.0 token for the current user. */
|
|
43901
|
+
oauth_token?:
|
|
43902
|
+
string;
|
|
43903
|
+
/** Returns response with indentations and line breaks. */
|
|
43904
|
+
prettyPrint?:
|
|
43905
|
+
boolean;
|
|
43906
|
+
/** Project ID for this request. */
|
|
43907
|
+
project:
|
|
43908
|
+
string;
|
|
43909
|
+
/** 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. */
|
|
43910
|
+
quotaUser?:
|
|
43911
|
+
string;
|
|
43912
|
+
/**
|
|
43913
|
+
* An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already
|
|
43914
|
+
* been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server
|
|
43915
|
+
* can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate
|
|
43916
|
+
* commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
|
43917
|
+
*/
|
|
43918
|
+
requestId?:
|
|
43919
|
+
string;
|
|
43920
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
43921
|
+
upload_protocol?:
|
|
43922
|
+
string;
|
|
43923
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
43924
|
+
uploadType?:
|
|
43925
|
+
string;
|
|
43926
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
43927
|
+
userIp?:
|
|
43928
|
+
string;
|
|
43929
|
+
/** The name of the zone for this request. */
|
|
43930
|
+
zone:
|
|
43931
|
+
string;
|
|
43932
|
+
}): Request<Operation>;
|
|
43933
|
+
/**
|
|
43934
|
+
* This method suspends a running instance, saving its state to persistent storage, and allows you to resume the instance at a later time. Suspended instances have no compute costs
|
|
43935
|
+
* (cores or RAM), and incur only storage charges for the saved VM memory and localSSD data. Any charged resources the virtual machine was using, such as persistent disks and static IP
|
|
43936
|
+
* addresses, will continue to be charged while the instance is suspended. For more information, see Suspending and resuming an instance.
|
|
43937
|
+
*/
|
|
43938
|
+
suspend(request?: {
|
|
43939
|
+
/** V1 error format. */
|
|
43940
|
+
"$.xgafv"?:
|
|
43941
|
+
string;
|
|
43942
|
+
/** OAuth access token. */
|
|
43943
|
+
access_token?:
|
|
43944
|
+
string;
|
|
43945
|
+
/** Data format for response. */
|
|
43946
|
+
alt?:
|
|
43947
|
+
string;
|
|
43948
|
+
/** JSONP */
|
|
43949
|
+
callback?:
|
|
43950
|
+
string;
|
|
43951
|
+
/** If true, discard the contents of any attached localSSD partitions. Default value is false. */
|
|
43952
|
+
discardLocalSsd?:
|
|
43953
|
+
boolean;
|
|
43954
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
43955
|
+
fields?:
|
|
43956
|
+
string;
|
|
43957
|
+
/** Name of the instance resource to suspend. */
|
|
43958
|
+
instance:
|
|
43959
|
+
string;
|
|
43960
|
+
/** 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. */
|
|
43961
|
+
key?:
|
|
43962
|
+
string;
|
|
43963
|
+
/** OAuth 2.0 token for the current user. */
|
|
43964
|
+
oauth_token?:
|
|
43965
|
+
string;
|
|
43966
|
+
/** Returns response with indentations and line breaks. */
|
|
43967
|
+
prettyPrint?:
|
|
43968
|
+
boolean;
|
|
43969
|
+
/** Project ID for this request. */
|
|
43970
|
+
project:
|
|
43971
|
+
string;
|
|
43972
|
+
/** 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. */
|
|
43973
|
+
quotaUser?:
|
|
43974
|
+
string;
|
|
43975
|
+
/**
|
|
43976
|
+
* An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already
|
|
43977
|
+
* been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server
|
|
43978
|
+
* can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate
|
|
43979
|
+
* commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
|
43980
|
+
*/
|
|
43981
|
+
requestId?:
|
|
43982
|
+
string;
|
|
43983
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
43984
|
+
upload_protocol?:
|
|
43985
|
+
string;
|
|
43986
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
43987
|
+
uploadType?:
|
|
43988
|
+
string;
|
|
43989
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
43990
|
+
userIp?:
|
|
43991
|
+
string;
|
|
43992
|
+
/** The name of the zone for this request. */
|
|
43993
|
+
zone:
|
|
43994
|
+
string;
|
|
43995
|
+
}): Request<Operation>;
|
|
43996
|
+
/** Returns permissions that a caller has on the specified resource. */
|
|
43997
|
+
testIamPermissions(request: {
|
|
43998
|
+
/** V1 error format. */
|
|
43999
|
+
"$.xgafv"?:
|
|
44000
|
+
string;
|
|
44001
|
+
/** OAuth access token. */
|
|
44002
|
+
access_token?:
|
|
44003
|
+
string;
|
|
44004
|
+
/** Data format for response. */
|
|
44005
|
+
alt?:
|
|
44006
|
+
string;
|
|
44007
|
+
/** JSONP */
|
|
44008
|
+
callback?:
|
|
44009
|
+
string;
|
|
44010
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
44011
|
+
fields?:
|
|
44012
|
+
string;
|
|
44013
|
+
/** 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. */
|
|
44014
|
+
key?:
|
|
44015
|
+
string;
|
|
44016
|
+
/** OAuth 2.0 token for the current user. */
|
|
44017
|
+
oauth_token?:
|
|
44018
|
+
string;
|
|
44019
|
+
/** Returns response with indentations and line breaks. */
|
|
44020
|
+
prettyPrint?:
|
|
44021
|
+
boolean;
|
|
44022
|
+
/** Project ID for this request. */
|
|
44023
|
+
project:
|
|
44024
|
+
string;
|
|
44025
|
+
/** 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. */
|
|
44026
|
+
quotaUser?:
|
|
44027
|
+
string;
|
|
44028
|
+
/** Name or id of the resource for this request. */
|
|
44029
|
+
resource:
|
|
44030
|
+
string;
|
|
44031
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
44032
|
+
upload_protocol?:
|
|
44033
|
+
string;
|
|
44034
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
44035
|
+
uploadType?:
|
|
44036
|
+
string;
|
|
44037
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
44038
|
+
userIp?:
|
|
44039
|
+
string;
|
|
44040
|
+
/** The name of the zone for this request. */
|
|
44041
|
+
zone:
|
|
44042
|
+
string;
|
|
44043
|
+
},
|
|
44044
|
+
body: TestPermissionsRequest): Request<TestPermissionsResponse>;
|
|
44045
|
+
/**
|
|
44046
|
+
* Updates an instance only if the necessary resources are available. This method can update only a specific set of instance properties. See Updating a running instance for a list of
|
|
44047
|
+
* updatable instance properties.
|
|
44048
|
+
*/
|
|
44049
|
+
update(request: {
|
|
44050
|
+
/** V1 error format. */
|
|
44051
|
+
"$.xgafv"?:
|
|
44052
|
+
string;
|
|
44053
|
+
/** OAuth access token. */
|
|
44054
|
+
access_token?:
|
|
44055
|
+
string;
|
|
44056
|
+
/** Data format for response. */
|
|
44057
|
+
alt?:
|
|
44058
|
+
string;
|
|
44059
|
+
/** JSONP */
|
|
44060
|
+
callback?:
|
|
44061
|
+
string;
|
|
44062
|
+
/** Whether to clear secure tags from the instance. This property if set to true will clear secure tags regardless of the resource.secure_tags. */
|
|
44063
|
+
clearSecureTag?:
|
|
44064
|
+
boolean;
|
|
44065
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
44066
|
+
fields?:
|
|
44067
|
+
string;
|
|
44068
|
+
/** Name of the instance resource to update. */
|
|
44069
|
+
instance:
|
|
44070
|
+
string;
|
|
44071
|
+
/** 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. */
|
|
44072
|
+
key?:
|
|
44073
|
+
string;
|
|
44074
|
+
/**
|
|
44075
|
+
* Specifies the action to take when updating an instance even if the updated properties do not require it. If not specified, then Compute Engine acts based on the minimum action
|
|
44076
|
+
* that the updated properties require.
|
|
44077
|
+
*/
|
|
44078
|
+
minimalAction?:
|
|
44079
|
+
string;
|
|
44080
|
+
/**
|
|
44081
|
+
* Specifies the most disruptive action that can be taken on the instance as part of the update. Compute Engine returns an error if the instance properties require a more
|
|
44082
|
+
* disruptive action as part of the instance update. Valid options from lowest to highest are NO_EFFECT, REFRESH, and RESTART.
|
|
44083
|
+
*/
|
|
44084
|
+
mostDisruptiveAllowedAction?:
|
|
44085
|
+
string;
|
|
43668
44086
|
/** OAuth 2.0 token for the current user. */
|
|
43669
44087
|
oauth_token?:
|
|
43670
44088
|
string;
|
|
@@ -62310,7 +62728,7 @@ declare namespace gapi.client {
|
|
|
62310
62728
|
},
|
|
62311
62729
|
body: RegionDisksStartAsyncReplicationRequest): Request<Operation>;
|
|
62312
62730
|
/** Stops asynchronous replication. Can be invoked either on the primary or on the secondary disk. */
|
|
62313
|
-
stopAsyncReplication(request
|
|
62731
|
+
stopAsyncReplication(request?: {
|
|
62314
62732
|
/** V1 error format. */
|
|
62315
62733
|
"$.xgafv"?:
|
|
62316
62734
|
string;
|
|
@@ -62364,11 +62782,9 @@ declare namespace gapi.client {
|
|
|
62364
62782
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
62365
62783
|
userIp?:
|
|
62366
62784
|
string;
|
|
62367
|
-
/** Request body */
|
|
62368
|
-
resource:
|
|
62369
|
-
RegionDisksStopAsyncReplicationRequest;
|
|
62370
62785
|
}): Request<Operation>;
|
|
62371
|
-
|
|
62786
|
+
/** Stops asynchronous replication for a consistency group of disks. Can be invoked either in the primary or secondary scope. */
|
|
62787
|
+
stopGroupAsyncReplication(request: {
|
|
62372
62788
|
/** V1 error format. */
|
|
62373
62789
|
"$.xgafv"?:
|
|
62374
62790
|
string;
|
|
@@ -62381,9 +62797,6 @@ declare namespace gapi.client {
|
|
|
62381
62797
|
/** JSONP */
|
|
62382
62798
|
callback?:
|
|
62383
62799
|
string;
|
|
62384
|
-
/** The name of the persistent disk. */
|
|
62385
|
-
disk:
|
|
62386
|
-
string;
|
|
62387
62800
|
/** Selector specifying which fields to include in a partial response. */
|
|
62388
62801
|
fields?:
|
|
62389
62802
|
string;
|
|
@@ -62402,7 +62815,7 @@ declare namespace gapi.client {
|
|
|
62402
62815
|
/** 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. */
|
|
62403
62816
|
quotaUser?:
|
|
62404
62817
|
string;
|
|
62405
|
-
/** The name of the region for this request. */
|
|
62818
|
+
/** The name of the region for this request. This must be the region of the primary or secondary disks in the consistency group. */
|
|
62406
62819
|
region:
|
|
62407
62820
|
string;
|
|
62408
62821
|
/**
|
|
@@ -62422,9 +62835,10 @@ declare namespace gapi.client {
|
|
|
62422
62835
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
62423
62836
|
userIp?:
|
|
62424
62837
|
string;
|
|
62425
|
-
|
|
62426
|
-
|
|
62427
|
-
|
|
62838
|
+
/** Request body */
|
|
62839
|
+
resource:
|
|
62840
|
+
DisksStopGroupAsyncReplicationResource;
|
|
62841
|
+
}): Request<Operation>;
|
|
62428
62842
|
stopGroupAsyncReplication(request: {
|
|
62429
62843
|
/** V1 error format. */
|
|
62430
62844
|
"$.xgafv"?:
|
|
@@ -62476,11 +62890,10 @@ declare namespace gapi.client {
|
|
|
62476
62890
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
62477
62891
|
userIp?:
|
|
62478
62892
|
string;
|
|
62479
|
-
|
|
62480
|
-
|
|
62481
|
-
|
|
62482
|
-
|
|
62483
|
-
stopGroupAsyncReplication(request: {
|
|
62893
|
+
},
|
|
62894
|
+
body: DisksStopGroupAsyncReplicationResource): Request<Operation>;
|
|
62895
|
+
/** Returns permissions that a caller has on the specified resource. */
|
|
62896
|
+
testIamPermissions(request: {
|
|
62484
62897
|
/** V1 error format. */
|
|
62485
62898
|
"$.xgafv"?:
|
|
62486
62899
|
string;
|
|
@@ -62511,16 +62924,11 @@ declare namespace gapi.client {
|
|
|
62511
62924
|
/** 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. */
|
|
62512
62925
|
quotaUser?:
|
|
62513
62926
|
string;
|
|
62514
|
-
/** The name of the region for this request.
|
|
62927
|
+
/** The name of the region for this request. */
|
|
62515
62928
|
region:
|
|
62516
62929
|
string;
|
|
62517
|
-
/**
|
|
62518
|
-
|
|
62519
|
-
* been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server
|
|
62520
|
-
* can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate
|
|
62521
|
-
* commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
|
62522
|
-
*/
|
|
62523
|
-
requestId?:
|
|
62930
|
+
/** Name or id of the resource for this request. */
|
|
62931
|
+
resource:
|
|
62524
62932
|
string;
|
|
62525
62933
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
62526
62934
|
upload_protocol?:
|
|
@@ -62532,9 +62940,12 @@ declare namespace gapi.client {
|
|
|
62532
62940
|
userIp?:
|
|
62533
62941
|
string;
|
|
62534
62942
|
},
|
|
62535
|
-
body:
|
|
62536
|
-
/**
|
|
62537
|
-
|
|
62943
|
+
body: TestPermissionsRequest): Request<TestPermissionsResponse>;
|
|
62944
|
+
/**
|
|
62945
|
+
* Update the specified disk with the data included in the request. Update is performed only on selected fields included as part of update-mask. Only the following fields can be
|
|
62946
|
+
* modified: user_license.
|
|
62947
|
+
*/
|
|
62948
|
+
update(request: {
|
|
62538
62949
|
/** V1 error format. */
|
|
62539
62950
|
"$.xgafv"?:
|
|
62540
62951
|
string;
|
|
@@ -62547,6 +62958,9 @@ declare namespace gapi.client {
|
|
|
62547
62958
|
/** JSONP */
|
|
62548
62959
|
callback?:
|
|
62549
62960
|
string;
|
|
62961
|
+
/** The disk name for this request. */
|
|
62962
|
+
disk:
|
|
62963
|
+
string;
|
|
62550
62964
|
/** Selector specifying which fields to include in a partial response. */
|
|
62551
62965
|
fields?:
|
|
62552
62966
|
string;
|
|
@@ -62556,6 +62970,8 @@ declare namespace gapi.client {
|
|
|
62556
62970
|
/** OAuth 2.0 token for the current user. */
|
|
62557
62971
|
oauth_token?:
|
|
62558
62972
|
string;
|
|
62973
|
+
paths?:
|
|
62974
|
+
string | string[];
|
|
62559
62975
|
/** Returns response with indentations and line breaks. */
|
|
62560
62976
|
prettyPrint?:
|
|
62561
62977
|
boolean;
|
|
@@ -62568,8 +62984,16 @@ declare namespace gapi.client {
|
|
|
62568
62984
|
/** The name of the region for this request. */
|
|
62569
62985
|
region:
|
|
62570
62986
|
string;
|
|
62571
|
-
/**
|
|
62572
|
-
|
|
62987
|
+
/**
|
|
62988
|
+
* An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already
|
|
62989
|
+
* been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server
|
|
62990
|
+
* can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate
|
|
62991
|
+
* commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
|
62992
|
+
*/
|
|
62993
|
+
requestId?:
|
|
62994
|
+
string;
|
|
62995
|
+
/** update_mask indicates fields to be updated as part of this request. */
|
|
62996
|
+
updateMask?:
|
|
62573
62997
|
string;
|
|
62574
62998
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
62575
62999
|
upload_protocol?:
|
|
@@ -62580,12 +63004,10 @@ declare namespace gapi.client {
|
|
|
62580
63004
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
62581
63005
|
userIp?:
|
|
62582
63006
|
string;
|
|
62583
|
-
|
|
62584
|
-
|
|
62585
|
-
|
|
62586
|
-
|
|
62587
|
-
* modified: user_license.
|
|
62588
|
-
*/
|
|
63007
|
+
/** Request body */
|
|
63008
|
+
resource:
|
|
63009
|
+
Disk;
|
|
63010
|
+
}): Request<Operation>;
|
|
62589
63011
|
update(request: {
|
|
62590
63012
|
/** V1 error format. */
|
|
62591
63013
|
"$.xgafv"?:
|
|
@@ -62645,11 +63067,115 @@ declare namespace gapi.client {
|
|
|
62645
63067
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
62646
63068
|
userIp?:
|
|
62647
63069
|
string;
|
|
63070
|
+
},
|
|
63071
|
+
body: Disk): Request<Operation>;
|
|
63072
|
+
}
|
|
63073
|
+
interface RegionDiskSettingsResource {
|
|
63074
|
+
/** Get Regional Disk Settings. */
|
|
63075
|
+
get(request?: {
|
|
63076
|
+
/** V1 error format. */
|
|
63077
|
+
"$.xgafv"?:
|
|
63078
|
+
string;
|
|
63079
|
+
/** OAuth access token. */
|
|
63080
|
+
access_token?:
|
|
63081
|
+
string;
|
|
63082
|
+
/** Data format for response. */
|
|
63083
|
+
alt?:
|
|
63084
|
+
string;
|
|
63085
|
+
/** JSONP */
|
|
63086
|
+
callback?:
|
|
63087
|
+
string;
|
|
63088
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
63089
|
+
fields?:
|
|
63090
|
+
string;
|
|
63091
|
+
/** 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. */
|
|
63092
|
+
key?:
|
|
63093
|
+
string;
|
|
63094
|
+
/** OAuth 2.0 token for the current user. */
|
|
63095
|
+
oauth_token?:
|
|
63096
|
+
string;
|
|
63097
|
+
/** Returns response with indentations and line breaks. */
|
|
63098
|
+
prettyPrint?:
|
|
63099
|
+
boolean;
|
|
63100
|
+
/** Project ID for this request. */
|
|
63101
|
+
project:
|
|
63102
|
+
string;
|
|
63103
|
+
/** 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. */
|
|
63104
|
+
quotaUser?:
|
|
63105
|
+
string;
|
|
63106
|
+
/** Name of the region for this request. */
|
|
63107
|
+
region:
|
|
63108
|
+
string;
|
|
63109
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
63110
|
+
upload_protocol?:
|
|
63111
|
+
string;
|
|
63112
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
63113
|
+
uploadType?:
|
|
63114
|
+
string;
|
|
63115
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
63116
|
+
userIp?:
|
|
63117
|
+
string;
|
|
63118
|
+
}): Request<DiskSettings>;
|
|
63119
|
+
/** Patch Regional Disk Settings */
|
|
63120
|
+
patch(request: {
|
|
63121
|
+
/** V1 error format. */
|
|
63122
|
+
"$.xgafv"?:
|
|
63123
|
+
string;
|
|
63124
|
+
/** OAuth access token. */
|
|
63125
|
+
access_token?:
|
|
63126
|
+
string;
|
|
63127
|
+
/** Data format for response. */
|
|
63128
|
+
alt?:
|
|
63129
|
+
string;
|
|
63130
|
+
/** JSONP */
|
|
63131
|
+
callback?:
|
|
63132
|
+
string;
|
|
63133
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
63134
|
+
fields?:
|
|
63135
|
+
string;
|
|
63136
|
+
/** 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. */
|
|
63137
|
+
key?:
|
|
63138
|
+
string;
|
|
63139
|
+
/** OAuth 2.0 token for the current user. */
|
|
63140
|
+
oauth_token?:
|
|
63141
|
+
string;
|
|
63142
|
+
/** Returns response with indentations and line breaks. */
|
|
63143
|
+
prettyPrint?:
|
|
63144
|
+
boolean;
|
|
63145
|
+
/** Project ID for this request. */
|
|
63146
|
+
project:
|
|
63147
|
+
string;
|
|
63148
|
+
/** 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. */
|
|
63149
|
+
quotaUser?:
|
|
63150
|
+
string;
|
|
63151
|
+
/** Name of the region for this request. */
|
|
63152
|
+
region:
|
|
63153
|
+
string;
|
|
63154
|
+
/**
|
|
63155
|
+
* An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already
|
|
63156
|
+
* been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server
|
|
63157
|
+
* can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate
|
|
63158
|
+
* commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
|
63159
|
+
*/
|
|
63160
|
+
requestId?:
|
|
63161
|
+
string;
|
|
63162
|
+
/** update_mask indicates fields to be updated as part of this request. */
|
|
63163
|
+
updateMask?:
|
|
63164
|
+
string;
|
|
63165
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
63166
|
+
upload_protocol?:
|
|
63167
|
+
string;
|
|
63168
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
63169
|
+
uploadType?:
|
|
63170
|
+
string;
|
|
63171
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
63172
|
+
userIp?:
|
|
63173
|
+
string;
|
|
62648
63174
|
/** Request body */
|
|
62649
63175
|
resource:
|
|
62650
|
-
|
|
63176
|
+
DiskSettings;
|
|
62651
63177
|
}): Request<Operation>;
|
|
62652
|
-
|
|
63178
|
+
patch(request: {
|
|
62653
63179
|
/** V1 error format. */
|
|
62654
63180
|
"$.xgafv"?:
|
|
62655
63181
|
string;
|
|
@@ -62662,9 +63188,6 @@ declare namespace gapi.client {
|
|
|
62662
63188
|
/** JSONP */
|
|
62663
63189
|
callback?:
|
|
62664
63190
|
string;
|
|
62665
|
-
/** The disk name for this request. */
|
|
62666
|
-
disk:
|
|
62667
|
-
string;
|
|
62668
63191
|
/** Selector specifying which fields to include in a partial response. */
|
|
62669
63192
|
fields?:
|
|
62670
63193
|
string;
|
|
@@ -62674,8 +63197,6 @@ declare namespace gapi.client {
|
|
|
62674
63197
|
/** OAuth 2.0 token for the current user. */
|
|
62675
63198
|
oauth_token?:
|
|
62676
63199
|
string;
|
|
62677
|
-
paths?:
|
|
62678
|
-
string | string[];
|
|
62679
63200
|
/** Returns response with indentations and line breaks. */
|
|
62680
63201
|
prettyPrint?:
|
|
62681
63202
|
boolean;
|
|
@@ -62685,7 +63206,7 @@ declare namespace gapi.client {
|
|
|
62685
63206
|
/** 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. */
|
|
62686
63207
|
quotaUser?:
|
|
62687
63208
|
string;
|
|
62688
|
-
/**
|
|
63209
|
+
/** Name of the region for this request. */
|
|
62689
63210
|
region:
|
|
62690
63211
|
string;
|
|
62691
63212
|
/**
|
|
@@ -62709,7 +63230,7 @@ declare namespace gapi.client {
|
|
|
62709
63230
|
userIp?:
|
|
62710
63231
|
string;
|
|
62711
63232
|
},
|
|
62712
|
-
body:
|
|
63233
|
+
body: DiskSettings): Request<Operation>;
|
|
62713
63234
|
}
|
|
62714
63235
|
interface RegionDiskTypesResource {
|
|
62715
63236
|
/** Returns the specified regional disk type. */
|
|
@@ -74907,6 +75428,89 @@ declare namespace gapi.client {
|
|
|
74907
75428
|
},
|
|
74908
75429
|
body: RegionUrlMapsValidateRequest): Request<UrlMapsValidateResponse>;
|
|
74909
75430
|
}
|
|
75431
|
+
interface RegionZonesResource {
|
|
75432
|
+
/** Retrieves the list of Zone resources under the specific region available to the specified project. */
|
|
75433
|
+
list(request?: {
|
|
75434
|
+
/** V1 error format. */
|
|
75435
|
+
"$.xgafv"?:
|
|
75436
|
+
string;
|
|
75437
|
+
/** OAuth access token. */
|
|
75438
|
+
access_token?:
|
|
75439
|
+
string;
|
|
75440
|
+
/** Data format for response. */
|
|
75441
|
+
alt?:
|
|
75442
|
+
string;
|
|
75443
|
+
/** JSONP */
|
|
75444
|
+
callback?:
|
|
75445
|
+
string;
|
|
75446
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
75447
|
+
fields?:
|
|
75448
|
+
string;
|
|
75449
|
+
/**
|
|
75450
|
+
* A filter expression that filters resources listed in the response. Most Compute resources support two types of filter expressions: expressions that support regular expressions
|
|
75451
|
+
* and expressions that follow API improvement proposal AIP-160. If you want to use AIP-160, your expression must specify the field name, an operator, and the value that you want
|
|
75452
|
+
* to use for filtering. The value must be a string, a number, or a boolean. The operator must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`. For example, if you are filtering
|
|
75453
|
+
* Compute Engine instances, you can exclude instances named `example-instance` by specifying `name != example-instance`. The `:` operator can be used with string fields to match
|
|
75454
|
+
* substrings. For non-string fields it is equivalent to the `=` operator. The `:*` comparison can be used to test whether a key has been defined. For example, to find all objects
|
|
75455
|
+
* with `owner` label use: ``` labels.owner:* ``` You can also filter nested fields. For example, you could specify `scheduling.automaticRestart = false` to include instances only
|
|
75456
|
+
* if they are not scheduled for automatic restarts. You can use filtering on nested fields to filter based on resource labels. To filter on multiple expressions, provide each
|
|
75457
|
+
* separate expression within parentheses. For example: ``` (scheduling.automaticRestart = true) (cpuPlatform = "Intel Skylake") ``` By default, each expression is an `AND`
|
|
75458
|
+
* expression. However, you can include `AND` and `OR` expressions explicitly. For example: ``` (cpuPlatform = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND
|
|
75459
|
+
* (scheduling.automaticRestart = true) ``` If you want to use a regular expression, use the `eq` (equal) or `ne` (not equal) operator against a single un-parenthesized expression
|
|
75460
|
+
* with or without quotes or against multiple parenthesized expressions. Examples: `fieldname eq unquoted literal` `fieldname eq 'single quoted literal'` `fieldname eq "double
|
|
75461
|
+
* quoted literal"` `(fieldname1 eq literal) (fieldname2 ne "literal")` The literal value is interpreted as a regular expression using Google RE2 library syntax. The literal value
|
|
75462
|
+
* must match the entire field. For example, to filter for instances that do not end with name "instance", you would use `name ne .*instance`.
|
|
75463
|
+
*/
|
|
75464
|
+
filter?:
|
|
75465
|
+
string;
|
|
75466
|
+
/** 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. */
|
|
75467
|
+
key?:
|
|
75468
|
+
string;
|
|
75469
|
+
/**
|
|
75470
|
+
* The maximum number of results per page that should be returned. If the number of available results is larger than `maxResults`, Compute Engine returns a `nextPageToken` that can
|
|
75471
|
+
* be used to get the next page of results in subsequent list requests. Acceptable values are `0` to `500`, inclusive. (Default: `500`)
|
|
75472
|
+
*/
|
|
75473
|
+
maxResults?:
|
|
75474
|
+
number;
|
|
75475
|
+
/** OAuth 2.0 token for the current user. */
|
|
75476
|
+
oauth_token?:
|
|
75477
|
+
string;
|
|
75478
|
+
/**
|
|
75479
|
+
* Sorts list results by a certain order. By default, results are returned in alphanumerical order based on the resource name. You can also sort results in descending order based
|
|
75480
|
+
* on the creation timestamp using `orderBy="creationTimestamp desc"`. This sorts results based on the `creationTimestamp` field in reverse chronological order (newest result
|
|
75481
|
+
* first). Use this to sort resources like operations so that the newest operation is returned first. Currently, only sorting by `name` or `creationTimestamp desc` is supported.
|
|
75482
|
+
*/
|
|
75483
|
+
orderBy?:
|
|
75484
|
+
string;
|
|
75485
|
+
/** Specifies a page token to use. Set `pageToken` to the `nextPageToken` returned by a previous list request to get the next page of results. */
|
|
75486
|
+
pageToken?:
|
|
75487
|
+
string;
|
|
75488
|
+
/** Returns response with indentations and line breaks. */
|
|
75489
|
+
prettyPrint?:
|
|
75490
|
+
boolean;
|
|
75491
|
+
/** Project ID for this request. */
|
|
75492
|
+
project:
|
|
75493
|
+
string;
|
|
75494
|
+
/** 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. */
|
|
75495
|
+
quotaUser?:
|
|
75496
|
+
string;
|
|
75497
|
+
/** Region for this request. */
|
|
75498
|
+
region:
|
|
75499
|
+
string;
|
|
75500
|
+
/** Opt-in for partial success behavior which provides partial results in case of failure. The default value is false. */
|
|
75501
|
+
returnPartialSuccess?:
|
|
75502
|
+
boolean;
|
|
75503
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
75504
|
+
upload_protocol?:
|
|
75505
|
+
string;
|
|
75506
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
75507
|
+
uploadType?:
|
|
75508
|
+
string;
|
|
75509
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
75510
|
+
userIp?:
|
|
75511
|
+
string;
|
|
75512
|
+
}): Request<ZoneList>;
|
|
75513
|
+
}
|
|
74910
75514
|
interface ReservationsResource {
|
|
74911
75515
|
/** Retrieves an aggregated list of reservations. */
|
|
74912
75516
|
aggregatedList(request?: {
|
|
@@ -80645,54 +81249,198 @@ declare namespace gapi.client {
|
|
|
80645
81249
|
*/
|
|
80646
81250
|
requestId?:
|
|
80647
81251
|
string;
|
|
80648
|
-
/** Name of the SSL policy to update. The name must be 1-63 characters long, and comply with RFC1035. */
|
|
80649
|
-
sslPolicy:
|
|
80650
|
-
string;
|
|
80651
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
80652
|
-
upload_protocol?:
|
|
80653
|
-
string;
|
|
80654
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
80655
|
-
uploadType?:
|
|
80656
|
-
string;
|
|
80657
|
-
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
80658
|
-
userIp?:
|
|
80659
|
-
string;
|
|
80660
|
-
},
|
|
80661
|
-
body: SslPolicy): Request<Operation>;
|
|
80662
|
-
/** Returns permissions that a caller has on the specified resource. */
|
|
80663
|
-
testIamPermissions(request: {
|
|
80664
|
-
/** V1 error format. */
|
|
80665
|
-
"$.xgafv"?:
|
|
80666
|
-
string;
|
|
80667
|
-
/** OAuth access token. */
|
|
80668
|
-
access_token?:
|
|
80669
|
-
string;
|
|
80670
|
-
/** Data format for response. */
|
|
80671
|
-
alt?:
|
|
80672
|
-
string;
|
|
80673
|
-
/** JSONP */
|
|
80674
|
-
callback?:
|
|
80675
|
-
string;
|
|
80676
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
80677
|
-
fields?:
|
|
80678
|
-
string;
|
|
80679
|
-
/** 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. */
|
|
80680
|
-
key?:
|
|
80681
|
-
string;
|
|
80682
|
-
/** OAuth 2.0 token for the current user. */
|
|
80683
|
-
oauth_token?:
|
|
80684
|
-
string;
|
|
80685
|
-
/** Returns response with indentations and line breaks. */
|
|
80686
|
-
prettyPrint?:
|
|
80687
|
-
boolean;
|
|
80688
|
-
/** Project ID for this request. */
|
|
80689
|
-
project:
|
|
80690
|
-
string;
|
|
80691
|
-
/** 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. */
|
|
80692
|
-
quotaUser?:
|
|
80693
|
-
string;
|
|
80694
|
-
/** Name or id of the resource for this request. */
|
|
80695
|
-
resource:
|
|
81252
|
+
/** Name of the SSL policy to update. The name must be 1-63 characters long, and comply with RFC1035. */
|
|
81253
|
+
sslPolicy:
|
|
81254
|
+
string;
|
|
81255
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
81256
|
+
upload_protocol?:
|
|
81257
|
+
string;
|
|
81258
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
81259
|
+
uploadType?:
|
|
81260
|
+
string;
|
|
81261
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
81262
|
+
userIp?:
|
|
81263
|
+
string;
|
|
81264
|
+
},
|
|
81265
|
+
body: SslPolicy): Request<Operation>;
|
|
81266
|
+
/** Returns permissions that a caller has on the specified resource. */
|
|
81267
|
+
testIamPermissions(request: {
|
|
81268
|
+
/** V1 error format. */
|
|
81269
|
+
"$.xgafv"?:
|
|
81270
|
+
string;
|
|
81271
|
+
/** OAuth access token. */
|
|
81272
|
+
access_token?:
|
|
81273
|
+
string;
|
|
81274
|
+
/** Data format for response. */
|
|
81275
|
+
alt?:
|
|
81276
|
+
string;
|
|
81277
|
+
/** JSONP */
|
|
81278
|
+
callback?:
|
|
81279
|
+
string;
|
|
81280
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
81281
|
+
fields?:
|
|
81282
|
+
string;
|
|
81283
|
+
/** 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. */
|
|
81284
|
+
key?:
|
|
81285
|
+
string;
|
|
81286
|
+
/** OAuth 2.0 token for the current user. */
|
|
81287
|
+
oauth_token?:
|
|
81288
|
+
string;
|
|
81289
|
+
/** Returns response with indentations and line breaks. */
|
|
81290
|
+
prettyPrint?:
|
|
81291
|
+
boolean;
|
|
81292
|
+
/** Project ID for this request. */
|
|
81293
|
+
project:
|
|
81294
|
+
string;
|
|
81295
|
+
/** 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. */
|
|
81296
|
+
quotaUser?:
|
|
81297
|
+
string;
|
|
81298
|
+
/** Name or id of the resource for this request. */
|
|
81299
|
+
resource:
|
|
81300
|
+
string;
|
|
81301
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
81302
|
+
upload_protocol?:
|
|
81303
|
+
string;
|
|
81304
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
81305
|
+
uploadType?:
|
|
81306
|
+
string;
|
|
81307
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
81308
|
+
userIp?:
|
|
81309
|
+
string;
|
|
81310
|
+
},
|
|
81311
|
+
body: TestPermissionsRequest): Request<TestPermissionsResponse>;
|
|
81312
|
+
}
|
|
81313
|
+
interface StoragePoolsResource {
|
|
81314
|
+
/** Retrieves an aggregated list of storage pools. */
|
|
81315
|
+
aggregatedList(request?: {
|
|
81316
|
+
/** V1 error format. */
|
|
81317
|
+
"$.xgafv"?:
|
|
81318
|
+
string;
|
|
81319
|
+
/** OAuth access token. */
|
|
81320
|
+
access_token?:
|
|
81321
|
+
string;
|
|
81322
|
+
/** Data format for response. */
|
|
81323
|
+
alt?:
|
|
81324
|
+
string;
|
|
81325
|
+
/** JSONP */
|
|
81326
|
+
callback?:
|
|
81327
|
+
string;
|
|
81328
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
81329
|
+
fields?:
|
|
81330
|
+
string;
|
|
81331
|
+
/**
|
|
81332
|
+
* A filter expression that filters resources listed in the response. Most Compute resources support two types of filter expressions: expressions that support regular expressions
|
|
81333
|
+
* and expressions that follow API improvement proposal AIP-160. If you want to use AIP-160, your expression must specify the field name, an operator, and the value that you want
|
|
81334
|
+
* to use for filtering. The value must be a string, a number, or a boolean. The operator must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`. For example, if you are filtering
|
|
81335
|
+
* Compute Engine instances, you can exclude instances named `example-instance` by specifying `name != example-instance`. The `:` operator can be used with string fields to match
|
|
81336
|
+
* substrings. For non-string fields it is equivalent to the `=` operator. The `:*` comparison can be used to test whether a key has been defined. For example, to find all objects
|
|
81337
|
+
* with `owner` label use: ``` labels.owner:* ``` You can also filter nested fields. For example, you could specify `scheduling.automaticRestart = false` to include instances only
|
|
81338
|
+
* if they are not scheduled for automatic restarts. You can use filtering on nested fields to filter based on resource labels. To filter on multiple expressions, provide each
|
|
81339
|
+
* separate expression within parentheses. For example: ``` (scheduling.automaticRestart = true) (cpuPlatform = "Intel Skylake") ``` By default, each expression is an `AND`
|
|
81340
|
+
* expression. However, you can include `AND` and `OR` expressions explicitly. For example: ``` (cpuPlatform = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND
|
|
81341
|
+
* (scheduling.automaticRestart = true) ``` If you want to use a regular expression, use the `eq` (equal) or `ne` (not equal) operator against a single un-parenthesized expression
|
|
81342
|
+
* with or without quotes or against multiple parenthesized expressions. Examples: `fieldname eq unquoted literal` `fieldname eq 'single quoted literal'` `fieldname eq "double
|
|
81343
|
+
* quoted literal"` `(fieldname1 eq literal) (fieldname2 ne "literal")` The literal value is interpreted as a regular expression using Google RE2 library syntax. The literal value
|
|
81344
|
+
* must match the entire field. For example, to filter for instances that do not end with name "instance", you would use `name ne .*instance`.
|
|
81345
|
+
*/
|
|
81346
|
+
filter?:
|
|
81347
|
+
string;
|
|
81348
|
+
/**
|
|
81349
|
+
* Indicates whether every visible scope for each scope type (zone, region, global) should be included in the response. For new resource types added after this field, the flag has
|
|
81350
|
+
* no effect as new resource types will always include every visible scope for each scope type in response. For resource types which predate this field, if this flag is omitted or
|
|
81351
|
+
* false, only scopes of the scope types where the resource type is expected to be found will be included.
|
|
81352
|
+
*/
|
|
81353
|
+
includeAllScopes?:
|
|
81354
|
+
boolean;
|
|
81355
|
+
/** 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. */
|
|
81356
|
+
key?:
|
|
81357
|
+
string;
|
|
81358
|
+
/**
|
|
81359
|
+
* The maximum number of results per page that should be returned. If the number of available results is larger than `maxResults`, Compute Engine returns a `nextPageToken` that can
|
|
81360
|
+
* be used to get the next page of results in subsequent list requests. Acceptable values are `0` to `500`, inclusive. (Default: `500`)
|
|
81361
|
+
*/
|
|
81362
|
+
maxResults?:
|
|
81363
|
+
number;
|
|
81364
|
+
/** OAuth 2.0 token for the current user. */
|
|
81365
|
+
oauth_token?:
|
|
81366
|
+
string;
|
|
81367
|
+
/**
|
|
81368
|
+
* Sorts list results by a certain order. By default, results are returned in alphanumerical order based on the resource name. You can also sort results in descending order based
|
|
81369
|
+
* on the creation timestamp using `orderBy="creationTimestamp desc"`. This sorts results based on the `creationTimestamp` field in reverse chronological order (newest result
|
|
81370
|
+
* first). Use this to sort resources like operations so that the newest operation is returned first. Currently, only sorting by `name` or `creationTimestamp desc` is supported.
|
|
81371
|
+
*/
|
|
81372
|
+
orderBy?:
|
|
81373
|
+
string;
|
|
81374
|
+
/** Specifies a page token to use. Set `pageToken` to the `nextPageToken` returned by a previous list request to get the next page of results. */
|
|
81375
|
+
pageToken?:
|
|
81376
|
+
string;
|
|
81377
|
+
/** Returns response with indentations and line breaks. */
|
|
81378
|
+
prettyPrint?:
|
|
81379
|
+
boolean;
|
|
81380
|
+
/** Project ID for this request. */
|
|
81381
|
+
project:
|
|
81382
|
+
string;
|
|
81383
|
+
/** 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. */
|
|
81384
|
+
quotaUser?:
|
|
81385
|
+
string;
|
|
81386
|
+
/** Opt-in for partial success behavior which provides partial results in case of failure. The default value is false. */
|
|
81387
|
+
returnPartialSuccess?:
|
|
81388
|
+
boolean;
|
|
81389
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
81390
|
+
upload_protocol?:
|
|
81391
|
+
string;
|
|
81392
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
81393
|
+
uploadType?:
|
|
81394
|
+
string;
|
|
81395
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
81396
|
+
userIp?:
|
|
81397
|
+
string;
|
|
81398
|
+
}): Request<StoragePoolAggregatedList>;
|
|
81399
|
+
/**
|
|
81400
|
+
* Deletes the specified storage pool. Deleting a storagePool removes its data permanently and is irreversible. However, deleting a storagePool does not delete any snapshots previously
|
|
81401
|
+
* made from the storagePool. You must separately delete snapshots.
|
|
81402
|
+
*/
|
|
81403
|
+
delete(request?: {
|
|
81404
|
+
/** V1 error format. */
|
|
81405
|
+
"$.xgafv"?:
|
|
81406
|
+
string;
|
|
81407
|
+
/** OAuth access token. */
|
|
81408
|
+
access_token?:
|
|
81409
|
+
string;
|
|
81410
|
+
/** Data format for response. */
|
|
81411
|
+
alt?:
|
|
81412
|
+
string;
|
|
81413
|
+
/** JSONP */
|
|
81414
|
+
callback?:
|
|
81415
|
+
string;
|
|
81416
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
81417
|
+
fields?:
|
|
81418
|
+
string;
|
|
81419
|
+
/** 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. */
|
|
81420
|
+
key?:
|
|
81421
|
+
string;
|
|
81422
|
+
/** OAuth 2.0 token for the current user. */
|
|
81423
|
+
oauth_token?:
|
|
81424
|
+
string;
|
|
81425
|
+
/** Returns response with indentations and line breaks. */
|
|
81426
|
+
prettyPrint?:
|
|
81427
|
+
boolean;
|
|
81428
|
+
/** Project ID for this request. */
|
|
81429
|
+
project:
|
|
81430
|
+
string;
|
|
81431
|
+
/** 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. */
|
|
81432
|
+
quotaUser?:
|
|
81433
|
+
string;
|
|
81434
|
+
/**
|
|
81435
|
+
* An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already
|
|
81436
|
+
* been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server
|
|
81437
|
+
* can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate
|
|
81438
|
+
* commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
|
81439
|
+
*/
|
|
81440
|
+
requestId?:
|
|
81441
|
+
string;
|
|
81442
|
+
/** Name of the storage pool to delete. */
|
|
81443
|
+
storagePool:
|
|
80696
81444
|
string;
|
|
80697
81445
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
80698
81446
|
upload_protocol?:
|
|
@@ -80703,100 +81451,12 @@ declare namespace gapi.client {
|
|
|
80703
81451
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
80704
81452
|
userIp?:
|
|
80705
81453
|
string;
|
|
80706
|
-
|
|
80707
|
-
|
|
80708
|
-
}
|
|
80709
|
-
interface StoragePoolsResource {
|
|
80710
|
-
/** Retrieves an aggregated list of storage pools. */
|
|
80711
|
-
aggregatedList(request?: {
|
|
80712
|
-
/** V1 error format. */
|
|
80713
|
-
"$.xgafv"?:
|
|
80714
|
-
string;
|
|
80715
|
-
/** OAuth access token. */
|
|
80716
|
-
access_token?:
|
|
80717
|
-
string;
|
|
80718
|
-
/** Data format for response. */
|
|
80719
|
-
alt?:
|
|
80720
|
-
string;
|
|
80721
|
-
/** JSONP */
|
|
80722
|
-
callback?:
|
|
80723
|
-
string;
|
|
80724
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
80725
|
-
fields?:
|
|
80726
|
-
string;
|
|
80727
|
-
/**
|
|
80728
|
-
* A filter expression that filters resources listed in the response. Most Compute resources support two types of filter expressions: expressions that support regular expressions
|
|
80729
|
-
* and expressions that follow API improvement proposal AIP-160. If you want to use AIP-160, your expression must specify the field name, an operator, and the value that you want
|
|
80730
|
-
* to use for filtering. The value must be a string, a number, or a boolean. The operator must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`. For example, if you are filtering
|
|
80731
|
-
* Compute Engine instances, you can exclude instances named `example-instance` by specifying `name != example-instance`. The `:` operator can be used with string fields to match
|
|
80732
|
-
* substrings. For non-string fields it is equivalent to the `=` operator. The `:*` comparison can be used to test whether a key has been defined. For example, to find all objects
|
|
80733
|
-
* with `owner` label use: ``` labels.owner:* ``` You can also filter nested fields. For example, you could specify `scheduling.automaticRestart = false` to include instances only
|
|
80734
|
-
* if they are not scheduled for automatic restarts. You can use filtering on nested fields to filter based on resource labels. To filter on multiple expressions, provide each
|
|
80735
|
-
* separate expression within parentheses. For example: ``` (scheduling.automaticRestart = true) (cpuPlatform = "Intel Skylake") ``` By default, each expression is an `AND`
|
|
80736
|
-
* expression. However, you can include `AND` and `OR` expressions explicitly. For example: ``` (cpuPlatform = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND
|
|
80737
|
-
* (scheduling.automaticRestart = true) ``` If you want to use a regular expression, use the `eq` (equal) or `ne` (not equal) operator against a single un-parenthesized expression
|
|
80738
|
-
* with or without quotes or against multiple parenthesized expressions. Examples: `fieldname eq unquoted literal` `fieldname eq 'single quoted literal'` `fieldname eq "double
|
|
80739
|
-
* quoted literal"` `(fieldname1 eq literal) (fieldname2 ne "literal")` The literal value is interpreted as a regular expression using Google RE2 library syntax. The literal value
|
|
80740
|
-
* must match the entire field. For example, to filter for instances that do not end with name "instance", you would use `name ne .*instance`.
|
|
80741
|
-
*/
|
|
80742
|
-
filter?:
|
|
80743
|
-
string;
|
|
80744
|
-
/**
|
|
80745
|
-
* Indicates whether every visible scope for each scope type (zone, region, global) should be included in the response. For new resource types added after this field, the flag has
|
|
80746
|
-
* no effect as new resource types will always include every visible scope for each scope type in response. For resource types which predate this field, if this flag is omitted or
|
|
80747
|
-
* false, only scopes of the scope types where the resource type is expected to be found will be included.
|
|
80748
|
-
*/
|
|
80749
|
-
includeAllScopes?:
|
|
80750
|
-
boolean;
|
|
80751
|
-
/** 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. */
|
|
80752
|
-
key?:
|
|
80753
|
-
string;
|
|
80754
|
-
/**
|
|
80755
|
-
* The maximum number of results per page that should be returned. If the number of available results is larger than `maxResults`, Compute Engine returns a `nextPageToken` that can
|
|
80756
|
-
* be used to get the next page of results in subsequent list requests. Acceptable values are `0` to `500`, inclusive. (Default: `500`)
|
|
80757
|
-
*/
|
|
80758
|
-
maxResults?:
|
|
80759
|
-
number;
|
|
80760
|
-
/** OAuth 2.0 token for the current user. */
|
|
80761
|
-
oauth_token?:
|
|
80762
|
-
string;
|
|
80763
|
-
/**
|
|
80764
|
-
* Sorts list results by a certain order. By default, results are returned in alphanumerical order based on the resource name. You can also sort results in descending order based
|
|
80765
|
-
* on the creation timestamp using `orderBy="creationTimestamp desc"`. This sorts results based on the `creationTimestamp` field in reverse chronological order (newest result
|
|
80766
|
-
* first). Use this to sort resources like operations so that the newest operation is returned first. Currently, only sorting by `name` or `creationTimestamp desc` is supported.
|
|
80767
|
-
*/
|
|
80768
|
-
orderBy?:
|
|
80769
|
-
string;
|
|
80770
|
-
/** Specifies a page token to use. Set `pageToken` to the `nextPageToken` returned by a previous list request to get the next page of results. */
|
|
80771
|
-
pageToken?:
|
|
80772
|
-
string;
|
|
80773
|
-
/** Returns response with indentations and line breaks. */
|
|
80774
|
-
prettyPrint?:
|
|
80775
|
-
boolean;
|
|
80776
|
-
/** Project ID for this request. */
|
|
80777
|
-
project:
|
|
80778
|
-
string;
|
|
80779
|
-
/** 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. */
|
|
80780
|
-
quotaUser?:
|
|
80781
|
-
string;
|
|
80782
|
-
/** Opt-in for partial success behavior which provides partial results in case of failure. The default value is false. */
|
|
80783
|
-
returnPartialSuccess?:
|
|
80784
|
-
boolean;
|
|
80785
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
80786
|
-
upload_protocol?:
|
|
80787
|
-
string;
|
|
80788
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
80789
|
-
uploadType?:
|
|
80790
|
-
string;
|
|
80791
|
-
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
80792
|
-
userIp?:
|
|
81454
|
+
/** The name of the zone for this request. */
|
|
81455
|
+
zone:
|
|
80793
81456
|
string;
|
|
80794
|
-
}): Request<
|
|
80795
|
-
/**
|
|
80796
|
-
|
|
80797
|
-
* made from the storagePool. You must separately delete snapshots.
|
|
80798
|
-
*/
|
|
80799
|
-
delete(request?: {
|
|
81457
|
+
}): Request<Operation>;
|
|
81458
|
+
/** Returns a specified storage pool. Gets a list of available storage pools by making a list() request. */
|
|
81459
|
+
get(request?: {
|
|
80800
81460
|
/** V1 error format. */
|
|
80801
81461
|
"$.xgafv"?:
|
|
80802
81462
|
string;
|
|
@@ -80827,15 +81487,7 @@ declare namespace gapi.client {
|
|
|
80827
81487
|
/** 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. */
|
|
80828
81488
|
quotaUser?:
|
|
80829
81489
|
string;
|
|
80830
|
-
/**
|
|
80831
|
-
* An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already
|
|
80832
|
-
* been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server
|
|
80833
|
-
* can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate
|
|
80834
|
-
* commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
|
80835
|
-
*/
|
|
80836
|
-
requestId?:
|
|
80837
|
-
string;
|
|
80838
|
-
/** Name of the storage pool to delete. */
|
|
81490
|
+
/** Name of the storage pool to return. */
|
|
80839
81491
|
storagePool:
|
|
80840
81492
|
string;
|
|
80841
81493
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
@@ -80850,9 +81502,9 @@ declare namespace gapi.client {
|
|
|
80850
81502
|
/** The name of the zone for this request. */
|
|
80851
81503
|
zone:
|
|
80852
81504
|
string;
|
|
80853
|
-
}): Request<
|
|
80854
|
-
/**
|
|
80855
|
-
|
|
81505
|
+
}): Request<StoragePool>;
|
|
81506
|
+
/** Gets the access control policy for a resource. May be empty if no such policy or resource exists. */
|
|
81507
|
+
getIamPolicy(request?: {
|
|
80856
81508
|
/** V1 error format. */
|
|
80857
81509
|
"$.xgafv"?:
|
|
80858
81510
|
string;
|
|
@@ -80874,6 +81526,9 @@ declare namespace gapi.client {
|
|
|
80874
81526
|
/** OAuth 2.0 token for the current user. */
|
|
80875
81527
|
oauth_token?:
|
|
80876
81528
|
string;
|
|
81529
|
+
/** Requested IAM Policy version. */
|
|
81530
|
+
optionsRequestedPolicyVersion?:
|
|
81531
|
+
number;
|
|
80877
81532
|
/** Returns response with indentations and line breaks. */
|
|
80878
81533
|
prettyPrint?:
|
|
80879
81534
|
boolean;
|
|
@@ -80883,8 +81538,8 @@ declare namespace gapi.client {
|
|
|
80883
81538
|
/** 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. */
|
|
80884
81539
|
quotaUser?:
|
|
80885
81540
|
string;
|
|
80886
|
-
/** Name of the
|
|
80887
|
-
|
|
81541
|
+
/** Name or id of the resource for this request. */
|
|
81542
|
+
resource:
|
|
80888
81543
|
string;
|
|
80889
81544
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
80890
81545
|
upload_protocol?:
|
|
@@ -80898,9 +81553,9 @@ declare namespace gapi.client {
|
|
|
80898
81553
|
/** The name of the zone for this request. */
|
|
80899
81554
|
zone:
|
|
80900
81555
|
string;
|
|
80901
|
-
}): Request<
|
|
80902
|
-
/**
|
|
80903
|
-
|
|
81556
|
+
}): Request<Policy>;
|
|
81557
|
+
/** Creates a storage pool in the specified project using the data in the request. */
|
|
81558
|
+
insert(request: {
|
|
80904
81559
|
/** V1 error format. */
|
|
80905
81560
|
"$.xgafv"?:
|
|
80906
81561
|
string;
|
|
@@ -80922,9 +81577,6 @@ declare namespace gapi.client {
|
|
|
80922
81577
|
/** OAuth 2.0 token for the current user. */
|
|
80923
81578
|
oauth_token?:
|
|
80924
81579
|
string;
|
|
80925
|
-
/** Requested IAM Policy version. */
|
|
80926
|
-
optionsRequestedPolicyVersion?:
|
|
80927
|
-
number;
|
|
80928
81580
|
/** Returns response with indentations and line breaks. */
|
|
80929
81581
|
prettyPrint?:
|
|
80930
81582
|
boolean;
|
|
@@ -80934,8 +81586,13 @@ declare namespace gapi.client {
|
|
|
80934
81586
|
/** 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. */
|
|
80935
81587
|
quotaUser?:
|
|
80936
81588
|
string;
|
|
80937
|
-
/**
|
|
80938
|
-
|
|
81589
|
+
/**
|
|
81590
|
+
* An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already
|
|
81591
|
+
* been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server
|
|
81592
|
+
* can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate
|
|
81593
|
+
* commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
|
81594
|
+
*/
|
|
81595
|
+
requestId?:
|
|
80939
81596
|
string;
|
|
80940
81597
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
80941
81598
|
upload_protocol?:
|
|
@@ -80949,8 +81606,10 @@ declare namespace gapi.client {
|
|
|
80949
81606
|
/** The name of the zone for this request. */
|
|
80950
81607
|
zone:
|
|
80951
81608
|
string;
|
|
80952
|
-
|
|
80953
|
-
|
|
81609
|
+
/** Request body */
|
|
81610
|
+
resource:
|
|
81611
|
+
StoragePool;
|
|
81612
|
+
}): Request<Operation>;
|
|
80954
81613
|
insert(request: {
|
|
80955
81614
|
/** V1 error format. */
|
|
80956
81615
|
"$.xgafv"?:
|
|
@@ -81002,11 +81661,10 @@ declare namespace gapi.client {
|
|
|
81002
81661
|
/** The name of the zone for this request. */
|
|
81003
81662
|
zone:
|
|
81004
81663
|
string;
|
|
81005
|
-
|
|
81006
|
-
|
|
81007
|
-
|
|
81008
|
-
|
|
81009
|
-
insert(request: {
|
|
81664
|
+
},
|
|
81665
|
+
body: StoragePool): Request<Operation>;
|
|
81666
|
+
/** Retrieves a list of storage pools contained within the specified zone. */
|
|
81667
|
+
list(request?: {
|
|
81010
81668
|
/** V1 error format. */
|
|
81011
81669
|
"$.xgafv"?:
|
|
81012
81670
|
string;
|
|
@@ -81022,12 +81680,45 @@ declare namespace gapi.client {
|
|
|
81022
81680
|
/** Selector specifying which fields to include in a partial response. */
|
|
81023
81681
|
fields?:
|
|
81024
81682
|
string;
|
|
81683
|
+
/**
|
|
81684
|
+
* A filter expression that filters resources listed in the response. Most Compute resources support two types of filter expressions: expressions that support regular expressions
|
|
81685
|
+
* and expressions that follow API improvement proposal AIP-160. If you want to use AIP-160, your expression must specify the field name, an operator, and the value that you want
|
|
81686
|
+
* to use for filtering. The value must be a string, a number, or a boolean. The operator must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`. For example, if you are filtering
|
|
81687
|
+
* Compute Engine instances, you can exclude instances named `example-instance` by specifying `name != example-instance`. The `:` operator can be used with string fields to match
|
|
81688
|
+
* substrings. For non-string fields it is equivalent to the `=` operator. The `:*` comparison can be used to test whether a key has been defined. For example, to find all objects
|
|
81689
|
+
* with `owner` label use: ``` labels.owner:* ``` You can also filter nested fields. For example, you could specify `scheduling.automaticRestart = false` to include instances only
|
|
81690
|
+
* if they are not scheduled for automatic restarts. You can use filtering on nested fields to filter based on resource labels. To filter on multiple expressions, provide each
|
|
81691
|
+
* separate expression within parentheses. For example: ``` (scheduling.automaticRestart = true) (cpuPlatform = "Intel Skylake") ``` By default, each expression is an `AND`
|
|
81692
|
+
* expression. However, you can include `AND` and `OR` expressions explicitly. For example: ``` (cpuPlatform = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND
|
|
81693
|
+
* (scheduling.automaticRestart = true) ``` If you want to use a regular expression, use the `eq` (equal) or `ne` (not equal) operator against a single un-parenthesized expression
|
|
81694
|
+
* with or without quotes or against multiple parenthesized expressions. Examples: `fieldname eq unquoted literal` `fieldname eq 'single quoted literal'` `fieldname eq "double
|
|
81695
|
+
* quoted literal"` `(fieldname1 eq literal) (fieldname2 ne "literal")` The literal value is interpreted as a regular expression using Google RE2 library syntax. The literal value
|
|
81696
|
+
* must match the entire field. For example, to filter for instances that do not end with name "instance", you would use `name ne .*instance`.
|
|
81697
|
+
*/
|
|
81698
|
+
filter?:
|
|
81699
|
+
string;
|
|
81025
81700
|
/** 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. */
|
|
81026
81701
|
key?:
|
|
81027
81702
|
string;
|
|
81703
|
+
/**
|
|
81704
|
+
* The maximum number of results per page that should be returned. If the number of available results is larger than `maxResults`, Compute Engine returns a `nextPageToken` that can
|
|
81705
|
+
* be used to get the next page of results in subsequent list requests. Acceptable values are `0` to `500`, inclusive. (Default: `500`)
|
|
81706
|
+
*/
|
|
81707
|
+
maxResults?:
|
|
81708
|
+
number;
|
|
81028
81709
|
/** OAuth 2.0 token for the current user. */
|
|
81029
81710
|
oauth_token?:
|
|
81030
81711
|
string;
|
|
81712
|
+
/**
|
|
81713
|
+
* Sorts list results by a certain order. By default, results are returned in alphanumerical order based on the resource name. You can also sort results in descending order based
|
|
81714
|
+
* on the creation timestamp using `orderBy="creationTimestamp desc"`. This sorts results based on the `creationTimestamp` field in reverse chronological order (newest result
|
|
81715
|
+
* first). Use this to sort resources like operations so that the newest operation is returned first. Currently, only sorting by `name` or `creationTimestamp desc` is supported.
|
|
81716
|
+
*/
|
|
81717
|
+
orderBy?:
|
|
81718
|
+
string;
|
|
81719
|
+
/** Specifies a page token to use. Set `pageToken` to the `nextPageToken` returned by a previous list request to get the next page of results. */
|
|
81720
|
+
pageToken?:
|
|
81721
|
+
string;
|
|
81031
81722
|
/** Returns response with indentations and line breaks. */
|
|
81032
81723
|
prettyPrint?:
|
|
81033
81724
|
boolean;
|
|
@@ -81037,14 +81728,9 @@ declare namespace gapi.client {
|
|
|
81037
81728
|
/** 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. */
|
|
81038
81729
|
quotaUser?:
|
|
81039
81730
|
string;
|
|
81040
|
-
/**
|
|
81041
|
-
|
|
81042
|
-
|
|
81043
|
-
* can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate
|
|
81044
|
-
* commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
|
81045
|
-
*/
|
|
81046
|
-
requestId?:
|
|
81047
|
-
string;
|
|
81731
|
+
/** Opt-in for partial success behavior which provides partial results in case of failure. The default value is false. */
|
|
81732
|
+
returnPartialSuccess?:
|
|
81733
|
+
boolean;
|
|
81048
81734
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
81049
81735
|
upload_protocol?:
|
|
81050
81736
|
string;
|
|
@@ -81057,10 +81743,9 @@ declare namespace gapi.client {
|
|
|
81057
81743
|
/** The name of the zone for this request. */
|
|
81058
81744
|
zone:
|
|
81059
81745
|
string;
|
|
81060
|
-
}
|
|
81061
|
-
|
|
81062
|
-
|
|
81063
|
-
list(request?: {
|
|
81746
|
+
}): Request<StoragePoolList>;
|
|
81747
|
+
/** Lists the disks in a specified storage pool. */
|
|
81748
|
+
listDisks(request?: {
|
|
81064
81749
|
/** V1 error format. */
|
|
81065
81750
|
"$.xgafv"?:
|
|
81066
81751
|
string;
|
|
@@ -81127,6 +81812,9 @@ declare namespace gapi.client {
|
|
|
81127
81812
|
/** Opt-in for partial success behavior which provides partial results in case of failure. The default value is false. */
|
|
81128
81813
|
returnPartialSuccess?:
|
|
81129
81814
|
boolean;
|
|
81815
|
+
/** Name of the storage pool to list disks of. */
|
|
81816
|
+
storagePool:
|
|
81817
|
+
string;
|
|
81130
81818
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
81131
81819
|
upload_protocol?:
|
|
81132
81820
|
string;
|
|
@@ -81139,7 +81827,7 @@ declare namespace gapi.client {
|
|
|
81139
81827
|
/** The name of the zone for this request. */
|
|
81140
81828
|
zone:
|
|
81141
81829
|
string;
|
|
81142
|
-
}): Request<
|
|
81830
|
+
}): Request<StoragePoolListDisks>;
|
|
81143
81831
|
/** Sets the access control policy on the specified resource. Replaces any existing policy. */
|
|
81144
81832
|
setIamPolicy(request: {
|
|
81145
81833
|
/** V1 error format. */
|
|
@@ -90958,6 +91646,8 @@ declare namespace gapi.client {
|
|
|
90958
91646
|
|
|
90959
91647
|
const backendServices: BackendServicesResource;
|
|
90960
91648
|
|
|
91649
|
+
const diskSettings: DiskSettingsResource;
|
|
91650
|
+
|
|
90961
91651
|
const diskTypes: DiskTypesResource;
|
|
90962
91652
|
|
|
90963
91653
|
const disks: DisksResource;
|
|
@@ -91056,6 +91746,8 @@ declare namespace gapi.client {
|
|
|
91056
91746
|
|
|
91057
91747
|
const regionCommitments: RegionCommitmentsResource;
|
|
91058
91748
|
|
|
91749
|
+
const regionDiskSettings: RegionDiskSettingsResource;
|
|
91750
|
+
|
|
91059
91751
|
const regionDiskTypes: RegionDiskTypesResource;
|
|
91060
91752
|
|
|
91061
91753
|
const regionDisks: RegionDisksResource;
|
|
@@ -91096,6 +91788,8 @@ declare namespace gapi.client {
|
|
|
91096
91788
|
|
|
91097
91789
|
const regionUrlMaps: RegionUrlMapsResource;
|
|
91098
91790
|
|
|
91791
|
+
const regionZones: RegionZonesResource;
|
|
91792
|
+
|
|
91099
91793
|
const regions: RegionsResource;
|
|
91100
91794
|
|
|
91101
91795
|
const reservations: ReservationsResource;
|