@maxim_mazurok/gapi.client.compute-alpha 0.0.20230530 → 0.0.20230610
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 +79 -25
- package/package.json +1 -1
- package/tests.ts +104 -2
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: 20230610
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -268,7 +268,7 @@ declare namespace gapi.client {
|
|
|
268
268
|
*/
|
|
269
269
|
ipv6EndpointType?:
|
|
270
270
|
string;
|
|
271
|
-
/** The IP version that will be used by this address. Valid options are IPV4 or IPV6.
|
|
271
|
+
/** The IP version that will be used by this address. Valid options are IPV4 or IPV6. */
|
|
272
272
|
ipVersion?:
|
|
273
273
|
string;
|
|
274
274
|
/** [Output Only] Type of the resource. Always compute#address for addresses. */
|
|
@@ -2785,7 +2785,11 @@ declare namespace gapi.client {
|
|
|
2785
2785
|
number;
|
|
2786
2786
|
}
|
|
2787
2787
|
interface CustomerEncryptionKey {
|
|
2788
|
-
/**
|
|
2788
|
+
/**
|
|
2789
|
+
* The name of the encryption key that is stored in Google Cloud KMS. For example: "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/cryptoKeys/key The
|
|
2790
|
+
* fully-qualifed key name may be returned for resource GET requests. For example: "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ key_region/cryptoKeys/key
|
|
2791
|
+
* /cryptoKeyVersions/1
|
|
2792
|
+
*/
|
|
2789
2793
|
kmsKeyName?:
|
|
2790
2794
|
string;
|
|
2791
2795
|
/**
|
|
@@ -4639,6 +4643,22 @@ declare namespace gapi.client {
|
|
|
4639
4643
|
};
|
|
4640
4644
|
}
|
|
4641
4645
|
interface FutureReservation {
|
|
4646
|
+
/** Future timestamp when the FR auto-created reservations will be deleted by GCE. Format of this field must be a valid href="https://www.ietf.org/rfc/rfc3339.txt">RFC3339 value. */
|
|
4647
|
+
autoCreatedReservationsDeleteTime?:
|
|
4648
|
+
string;
|
|
4649
|
+
/**
|
|
4650
|
+
* Specifies the duration of auto-created reservations. It represents relative time to future reservation start_time when auto-created reservations will be automatically deleted by
|
|
4651
|
+
* GCE. Duration time unit is represented as a count of seconds and fractions of seconds at nanosecond resolution.
|
|
4652
|
+
*/
|
|
4653
|
+
autoCreatedReservationsDuration?:
|
|
4654
|
+
Duration;
|
|
4655
|
+
/**
|
|
4656
|
+
* Setting for enabling or disabling automatic deletion for auto-created reservation. If omitted or set to true, auto-created reservations will be deleted at Future Reservation's end
|
|
4657
|
+
* time (default) or at user's defined timestamp if any of the [auto_created_reservations_delete_time, auto_created_reservations_duration] values is specified. For keeping auto-created
|
|
4658
|
+
* reservation indefinitely, this value should be set to false.
|
|
4659
|
+
*/
|
|
4660
|
+
autoDeleteAutoCreatedReservations?:
|
|
4661
|
+
boolean;
|
|
4642
4662
|
/** [Output Only] The creation timestamp for this future reservation in RFC3339 text format. */
|
|
4643
4663
|
creationTimestamp?:
|
|
4644
4664
|
string;
|
|
@@ -6584,6 +6604,9 @@ declare namespace gapi.client {
|
|
|
6584
6604
|
/** Input only. [Input Only] Additional params passed with the request, but not persisted as part of resource payload. */
|
|
6585
6605
|
params?:
|
|
6586
6606
|
InstanceParams;
|
|
6607
|
+
/** Partner Metadata assigned to the instance. A map from a subdomain (namespace) to entries map. */
|
|
6608
|
+
partnerMetadata?:
|
|
6609
|
+
{ [P in string]: StructuredEntries };
|
|
6587
6610
|
/** PostKeyRevocationActionType of the instance. */
|
|
6588
6611
|
postKeyRevocationActionType?:
|
|
6589
6612
|
string;
|
|
@@ -7185,7 +7208,11 @@ declare namespace gapi.client {
|
|
|
7185
7208
|
number;
|
|
7186
7209
|
}
|
|
7187
7210
|
interface InstanceGroupManagerInstanceLifecyclePolicy {
|
|
7188
|
-
/**
|
|
7211
|
+
/**
|
|
7212
|
+
* The action that a MIG performs on a failed or an unhealthy VM. A VM is marked as unhealthy when the application running on that VM fails a health check. Valid values are - REPAIR
|
|
7213
|
+
* (default): MIG automatically repairs a failed or an unhealthy VM by recreating it. For more information, see About repairing VMs in a MIG. - DO_NOTHING: MIG does not repair a failed
|
|
7214
|
+
* or an unhealthy VM.
|
|
7215
|
+
*/
|
|
7189
7216
|
defaultActionOnFailure?:
|
|
7190
7217
|
string;
|
|
7191
7218
|
/**
|
|
@@ -7392,15 +7419,15 @@ declare namespace gapi.client {
|
|
|
7392
7419
|
string;
|
|
7393
7420
|
/**
|
|
7394
7421
|
* The minimal action that you want to perform on each instance during the update: - REPLACE: At minimum, delete the instance and create it again. - RESTART: Stop the instance and
|
|
7395
|
-
* start it again. - REFRESH: Do not stop the instance. - NONE: Do not disrupt the instance at all. By default, the minimum action is NONE. If
|
|
7396
|
-
* action than you set with this flag, the necessary action is performed to execute the update.
|
|
7422
|
+
* start it again. - REFRESH: Do not stop the instance and limit disruption as much as possible. - NONE: Do not disrupt the instance at all. By default, the minimum action is NONE. If
|
|
7423
|
+
* your update requires a more disruptive action than you set with this flag, the necessary action is performed to execute the update.
|
|
7397
7424
|
*/
|
|
7398
7425
|
minimalAction?:
|
|
7399
7426
|
string;
|
|
7400
7427
|
/**
|
|
7401
7428
|
* The most disruptive action that you want to perform on each instance during the update: - REPLACE: Delete the instance and create it again. - RESTART: Stop the instance and start it
|
|
7402
|
-
* again. - REFRESH: Do not stop the instance. - NONE: Do not disrupt the instance at all. By default, the most disruptive allowed action is
|
|
7403
|
-
* disruptive action than you set with this flag, the update request will fail.
|
|
7429
|
+
* again. - REFRESH: Do not stop the instance and limit disruption as much as possible. - NONE: Do not disrupt the instance at all. By default, the most disruptive allowed action is
|
|
7430
|
+
* REPLACE. If your update requires a more disruptive action than you set with this flag, the update request will fail.
|
|
7404
7431
|
*/
|
|
7405
7432
|
mostDisruptiveAllowedAction?:
|
|
7406
7433
|
string;
|
|
@@ -7705,9 +7732,9 @@ declare namespace gapi.client {
|
|
|
7705
7732
|
minReadySec?:
|
|
7706
7733
|
number;
|
|
7707
7734
|
/**
|
|
7708
|
-
* Most disruptive action that is allowed to be taken on an instance. You can specify either NONE to forbid any actions, REFRESH to
|
|
7709
|
-
* RESTART to allow actions that can be applied without instance replacing or REPLACE to allow all possible actions. If the Updater determines that the minimal update
|
|
7710
|
-
* more disruptive than most disruptive allowed action you specify it will not perform the update at all.
|
|
7735
|
+
* Most disruptive action that is allowed to be taken on an instance. You can specify either NONE to forbid any actions, REFRESH to avoid restarting the VM and to limit disruption as
|
|
7736
|
+
* much as possible. RESTART to allow actions that can be applied without instance replacing or REPLACE to allow all possible actions. If the Updater determines that the minimal update
|
|
7737
|
+
* action needed is more disruptive than most disruptive allowed action you specify it will not perform the update at all.
|
|
7711
7738
|
*/
|
|
7712
7739
|
mostDisruptiveAllowedAction?:
|
|
7713
7740
|
string;
|
|
@@ -8043,6 +8070,9 @@ declare namespace gapi.client {
|
|
|
8043
8070
|
/** Note that for MachineImage, this is not supported yet. */
|
|
8044
8071
|
networkPerformanceConfig?:
|
|
8045
8072
|
NetworkPerformanceConfig;
|
|
8073
|
+
/** Partner Metadata assigned to the instance properties. A map from a subdomain (namespace) to entries map. */
|
|
8074
|
+
partnerMetadata?:
|
|
8075
|
+
{ [P in string]: StructuredEntries };
|
|
8046
8076
|
/** PostKeyRevocationActionType of the instance. */
|
|
8047
8077
|
postKeyRevocationActionType?:
|
|
8048
8078
|
string;
|
|
@@ -8119,12 +8149,6 @@ declare namespace gapi.client {
|
|
|
8119
8149
|
/** [Output Only] Type of the resource. Always compute#instance_settings for instance settings. */
|
|
8120
8150
|
kind?:
|
|
8121
8151
|
string;
|
|
8122
|
-
/**
|
|
8123
|
-
* Partial URL of the machine type resource to use for this instance, in the format: machineTypes/machine-type. This is either provided by the client or chosen by the system. For
|
|
8124
|
-
* example, the following is a valid partial url to a predefined machine type: machineTypes/n2-standard-1
|
|
8125
|
-
*/
|
|
8126
|
-
machineType?:
|
|
8127
|
-
string;
|
|
8128
8152
|
/** [Output Only] URL of the zone where the resource resides You must specify this field as part of the HTTP request URL. It is not settable as a field in the request body. */
|
|
8129
8153
|
zone?:
|
|
8130
8154
|
string;
|
|
@@ -13513,7 +13537,7 @@ declare namespace gapi.client {
|
|
|
13513
13537
|
/** An optional description of this resource. Provide this property when you create the resource. */
|
|
13514
13538
|
description?:
|
|
13515
13539
|
string;
|
|
13516
|
-
/** The
|
|
13540
|
+
/** The address to be used for reverse DNS verification. */
|
|
13517
13541
|
dnsVerificationIp?:
|
|
13518
13542
|
string;
|
|
13519
13543
|
/**
|
|
@@ -13526,7 +13550,7 @@ declare namespace gapi.client {
|
|
|
13526
13550
|
/** [Output Only] The unique identifier for the resource type. The server generates this identifier. */
|
|
13527
13551
|
id?:
|
|
13528
13552
|
string;
|
|
13529
|
-
/** The
|
|
13553
|
+
/** The address range, in CIDR format, represented by this public advertised prefix. */
|
|
13530
13554
|
ipCidrRange?:
|
|
13531
13555
|
string;
|
|
13532
13556
|
/** [Output Only] Type of the resource. Always compute#publicAdvertisedPrefix for public advertised prefixes. */
|
|
@@ -14086,6 +14110,9 @@ declare namespace gapi.client {
|
|
|
14086
14110
|
/** The Compute Engine quota metric name. */
|
|
14087
14111
|
metricName?:
|
|
14088
14112
|
string;
|
|
14113
|
+
/** Rollout status of the future quota limit. */
|
|
14114
|
+
rolloutStatus?:
|
|
14115
|
+
string;
|
|
14089
14116
|
}
|
|
14090
14117
|
interface RbacPolicy {
|
|
14091
14118
|
/** Name of the RbacPolicy. */
|
|
@@ -14394,15 +14421,15 @@ declare namespace gapi.client {
|
|
|
14394
14421
|
string;
|
|
14395
14422
|
/**
|
|
14396
14423
|
* The minimal action that you want to perform on each instance during the update: - REPLACE: At minimum, delete the instance and create it again. - RESTART: Stop the instance and
|
|
14397
|
-
* start it again. - REFRESH: Do not stop the instance. - NONE: Do not disrupt the instance at all. By default, the minimum action is NONE. If
|
|
14398
|
-
* action than you set with this flag, the necessary action is performed to execute the update.
|
|
14424
|
+
* start it again. - REFRESH: Do not stop the instance and limit disruption as much as possible. - NONE: Do not disrupt the instance at all. By default, the minimum action is NONE. If
|
|
14425
|
+
* your update requires a more disruptive action than you set with this flag, the necessary action is performed to execute the update.
|
|
14399
14426
|
*/
|
|
14400
14427
|
minimalAction?:
|
|
14401
14428
|
string;
|
|
14402
14429
|
/**
|
|
14403
14430
|
* The most disruptive action that you want to perform on each instance during the update: - REPLACE: Delete the instance and create it again. - RESTART: Stop the instance and start it
|
|
14404
|
-
* again. - REFRESH: Do not stop the instance. - NONE: Do not disrupt the instance at all. By default, the most disruptive allowed action is
|
|
14405
|
-
* disruptive action than you set with this flag, the update request will fail.
|
|
14431
|
+
* again. - REFRESH: Do not stop the instance and limit disruption as much as possible. - NONE: Do not disrupt the instance at all. By default, the most disruptive allowed action is
|
|
14432
|
+
* REPLACE. If your update requires a more disruptive action than you set with this flag, the update request will fail.
|
|
14406
14433
|
*/
|
|
14407
14434
|
mostDisruptiveAllowedAction?:
|
|
14408
14435
|
string;
|
|
@@ -14766,6 +14793,12 @@ declare namespace gapi.client {
|
|
|
14766
14793
|
/** [Output Only] Creation timestamp in RFC3339 text format. */
|
|
14767
14794
|
creationTimestamp?:
|
|
14768
14795
|
string;
|
|
14796
|
+
/** Duration time relative to reservation creation when GCE will automatically delete this resource. */
|
|
14797
|
+
deleteAfterDuration?:
|
|
14798
|
+
Duration;
|
|
14799
|
+
/** Absolute time in future when the reservation will be auto-deleted by GCE. Timestamp is represented in RFC3339 text format. */
|
|
14800
|
+
deleteAtTime?:
|
|
14801
|
+
string;
|
|
14769
14802
|
/** An optional description of this resource. Provide this property when you create the resource. */
|
|
14770
14803
|
description?:
|
|
14771
14804
|
string;
|
|
@@ -15410,7 +15443,7 @@ declare namespace gapi.client {
|
|
|
15410
15443
|
*/
|
|
15411
15444
|
nextHopGateway?:
|
|
15412
15445
|
string;
|
|
15413
|
-
/** [Output Only] The full resource name of the
|
|
15446
|
+
/** [Output Only] The full resource name of the Network Connectivity Center hub that will handle matching packets. */
|
|
15414
15447
|
nextHopHub?:
|
|
15415
15448
|
string;
|
|
15416
15449
|
/**
|
|
@@ -17404,6 +17437,9 @@ declare namespace gapi.client {
|
|
|
17404
17437
|
};
|
|
17405
17438
|
}
|
|
17406
17439
|
interface ServiceAttachmentConnectedEndpoint {
|
|
17440
|
+
/** The url of the consumer network. */
|
|
17441
|
+
consumerNetwork?:
|
|
17442
|
+
string;
|
|
17407
17443
|
/** The url of a connected endpoint. */
|
|
17408
17444
|
endpoint?:
|
|
17409
17445
|
string;
|
|
@@ -20584,7 +20620,7 @@ declare namespace gapi.client {
|
|
|
20584
20620
|
string;
|
|
20585
20621
|
}
|
|
20586
20622
|
interface UpcomingMaintenance {
|
|
20587
|
-
/** Indicates if the maintenance can be customer triggered.
|
|
20623
|
+
/** Indicates if the maintenance can be customer triggered. */
|
|
20588
20624
|
canReschedule?:
|
|
20589
20625
|
boolean;
|
|
20590
20626
|
/** [Output Only] The date when the maintenance will take place. This value is in RFC3339 text format. DEPRECATED: Use window_start_time instead. */
|
|
@@ -40853,6 +40889,9 @@ declare namespace gapi.client {
|
|
|
40853
40889
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
40854
40890
|
userIp?:
|
|
40855
40891
|
string;
|
|
40892
|
+
/** View of the instance. */
|
|
40893
|
+
view?:
|
|
40894
|
+
string;
|
|
40856
40895
|
/** The name of the zone for this request. */
|
|
40857
40896
|
zone:
|
|
40858
40897
|
string;
|
|
@@ -41482,6 +41521,9 @@ declare namespace gapi.client {
|
|
|
41482
41521
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
41483
41522
|
userIp?:
|
|
41484
41523
|
string;
|
|
41524
|
+
/** View of the instance. */
|
|
41525
|
+
view?:
|
|
41526
|
+
string;
|
|
41485
41527
|
/** The name of the zone for this request. */
|
|
41486
41528
|
zone:
|
|
41487
41529
|
string;
|
|
@@ -45141,6 +45183,9 @@ declare namespace gapi.client {
|
|
|
45141
45183
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
45142
45184
|
userIp?:
|
|
45143
45185
|
string;
|
|
45186
|
+
/** View of the instance template. */
|
|
45187
|
+
view?:
|
|
45188
|
+
string;
|
|
45144
45189
|
}): Request<InstanceTemplate>;
|
|
45145
45190
|
/** Gets the access control policy for a resource. May be empty if no such policy or resource exists. */
|
|
45146
45191
|
getIamPolicy(request?: {
|
|
@@ -45373,6 +45418,9 @@ declare namespace gapi.client {
|
|
|
45373
45418
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
45374
45419
|
userIp?:
|
|
45375
45420
|
string;
|
|
45421
|
+
/** View of the instance template. */
|
|
45422
|
+
view?:
|
|
45423
|
+
string;
|
|
45376
45424
|
}): Request<InstanceTemplateList>;
|
|
45377
45425
|
/** Sets the access control policy on the specified resource. Replaces any existing policy. */
|
|
45378
45426
|
setIamPolicy(request: {
|
|
@@ -67951,6 +67999,9 @@ declare namespace gapi.client {
|
|
|
67951
67999
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
67952
68000
|
userIp?:
|
|
67953
68001
|
string;
|
|
68002
|
+
/** View of the instance template. */
|
|
68003
|
+
view?:
|
|
68004
|
+
string;
|
|
67954
68005
|
}): Request<InstanceTemplate>;
|
|
67955
68006
|
/** Creates an instance template in the specified project and region using the global instance template whose URL is included in the request. */
|
|
67956
68007
|
insert(request: {
|
|
@@ -68141,6 +68192,9 @@ declare namespace gapi.client {
|
|
|
68141
68192
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
68142
68193
|
userIp?:
|
|
68143
68194
|
string;
|
|
68195
|
+
/** View of the instance template. */
|
|
68196
|
+
view?:
|
|
68197
|
+
string;
|
|
68144
68198
|
}): Request<InstanceTemplateList>;
|
|
68145
68199
|
}
|
|
68146
68200
|
interface RegionInstantSnapshotsResource {
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20230610
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -3915,6 +3915,12 @@ gapi.load('client', async () => {
|
|
|
3915
3915
|
requestId: "Test string",
|
|
3916
3916
|
zone: "Test string",
|
|
3917
3917
|
}, {
|
|
3918
|
+
autoCreatedReservationsDeleteTime: "Test string",
|
|
3919
|
+
autoCreatedReservationsDuration: {
|
|
3920
|
+
nanos: 42,
|
|
3921
|
+
seconds: "Test string",
|
|
3922
|
+
},
|
|
3923
|
+
autoDeleteAutoCreatedReservations: true,
|
|
3918
3924
|
creationTimestamp: "Test string",
|
|
3919
3925
|
description: "Test string",
|
|
3920
3926
|
id: "Test string",
|
|
@@ -4058,6 +4064,12 @@ gapi.load('client', async () => {
|
|
|
4058
4064
|
updateMask: "Test string",
|
|
4059
4065
|
zone: "Test string",
|
|
4060
4066
|
}, {
|
|
4067
|
+
autoCreatedReservationsDeleteTime: "Test string",
|
|
4068
|
+
autoCreatedReservationsDuration: {
|
|
4069
|
+
nanos: 42,
|
|
4070
|
+
seconds: "Test string",
|
|
4071
|
+
},
|
|
4072
|
+
autoDeleteAutoCreatedReservations: true,
|
|
4061
4073
|
creationTimestamp: "Test string",
|
|
4062
4074
|
description: "Test string",
|
|
4063
4075
|
id: "Test string",
|
|
@@ -5710,6 +5722,7 @@ gapi.load('client', async () => {
|
|
|
5710
5722
|
limit: 42,
|
|
5711
5723
|
limitName: "Test string",
|
|
5712
5724
|
metricName: "Test string",
|
|
5725
|
+
rolloutStatus: "Test string",
|
|
5713
5726
|
},
|
|
5714
5727
|
}
|
|
5715
5728
|
],
|
|
@@ -7262,6 +7275,13 @@ gapi.load('client', async () => {
|
|
|
7262
7275
|
externalIpEgressBandwidthTier: "Test string",
|
|
7263
7276
|
totalEgressBandwidthTier: "Test string",
|
|
7264
7277
|
},
|
|
7278
|
+
partnerMetadata: {
|
|
7279
|
+
A: {
|
|
7280
|
+
entries: {
|
|
7281
|
+
A: 42
|
|
7282
|
+
},
|
|
7283
|
+
}
|
|
7284
|
+
},
|
|
7265
7285
|
postKeyRevocationActionType: "Test string",
|
|
7266
7286
|
privateIpv6GoogleAccess: "Test string",
|
|
7267
7287
|
reservationAffinity: {
|
|
@@ -7398,6 +7418,7 @@ gapi.load('client', async () => {
|
|
|
7398
7418
|
await gapi.client.compute.instances.get({
|
|
7399
7419
|
instance: "Test string",
|
|
7400
7420
|
project: "Test string",
|
|
7421
|
+
view: "Test string",
|
|
7401
7422
|
zone: "Test string",
|
|
7402
7423
|
});
|
|
7403
7424
|
/** Returns effective firewalls applied to an interface of the instance. */
|
|
@@ -7710,6 +7731,13 @@ gapi.load('client', async () => {
|
|
|
7710
7731
|
A: "Test string"
|
|
7711
7732
|
},
|
|
7712
7733
|
},
|
|
7734
|
+
partnerMetadata: {
|
|
7735
|
+
A: {
|
|
7736
|
+
entries: {
|
|
7737
|
+
A: 42
|
|
7738
|
+
},
|
|
7739
|
+
}
|
|
7740
|
+
},
|
|
7713
7741
|
postKeyRevocationActionType: "Test string",
|
|
7714
7742
|
preservedStateSizeGb: "Test string",
|
|
7715
7743
|
privateIpv6GoogleAccess: "Test string",
|
|
@@ -7850,6 +7878,7 @@ gapi.load('client', async () => {
|
|
|
7850
7878
|
pageToken: "Test string",
|
|
7851
7879
|
project: "Test string",
|
|
7852
7880
|
returnPartialSuccess: true,
|
|
7881
|
+
view: "Test string",
|
|
7853
7882
|
zone: "Test string",
|
|
7854
7883
|
});
|
|
7855
7884
|
/**
|
|
@@ -8574,6 +8603,13 @@ gapi.load('client', async () => {
|
|
|
8574
8603
|
A: "Test string"
|
|
8575
8604
|
},
|
|
8576
8605
|
},
|
|
8606
|
+
partnerMetadata: {
|
|
8607
|
+
A: {
|
|
8608
|
+
entries: {
|
|
8609
|
+
A: 42
|
|
8610
|
+
},
|
|
8611
|
+
}
|
|
8612
|
+
},
|
|
8577
8613
|
postKeyRevocationActionType: "Test string",
|
|
8578
8614
|
preservedStateSizeGb: "Test string",
|
|
8579
8615
|
privateIpv6GoogleAccess: "Test string",
|
|
@@ -8857,7 +8893,6 @@ gapi.load('client', async () => {
|
|
|
8857
8893
|
}, {
|
|
8858
8894
|
email: "Test string",
|
|
8859
8895
|
kind: "Test string",
|
|
8860
|
-
machineType: "Test string",
|
|
8861
8896
|
zone: "Test string",
|
|
8862
8897
|
});
|
|
8863
8898
|
/** Retrieves the list of all InstanceTemplates resources, regional and global, available to the specified project. */
|
|
@@ -8883,6 +8918,7 @@ gapi.load('client', async () => {
|
|
|
8883
8918
|
await gapi.client.compute.instanceTemplates.get({
|
|
8884
8919
|
instanceTemplate: "Test string",
|
|
8885
8920
|
project: "Test string",
|
|
8921
|
+
view: "Test string",
|
|
8886
8922
|
});
|
|
8887
8923
|
/** Gets the access control policy for a resource. May be empty if no such policy or resource exists. */
|
|
8888
8924
|
await gapi.client.compute.instanceTemplates.getIamPolicy({
|
|
@@ -9126,6 +9162,13 @@ gapi.load('client', async () => {
|
|
|
9126
9162
|
externalIpEgressBandwidthTier: "Test string",
|
|
9127
9163
|
totalEgressBandwidthTier: "Test string",
|
|
9128
9164
|
},
|
|
9165
|
+
partnerMetadata: {
|
|
9166
|
+
A: {
|
|
9167
|
+
entries: {
|
|
9168
|
+
A: 42
|
|
9169
|
+
},
|
|
9170
|
+
}
|
|
9171
|
+
},
|
|
9129
9172
|
postKeyRevocationActionType: "Test string",
|
|
9130
9173
|
privateIpv6GoogleAccess: "Test string",
|
|
9131
9174
|
reservationAffinity: {
|
|
@@ -9233,6 +9276,7 @@ gapi.load('client', async () => {
|
|
|
9233
9276
|
pageToken: "Test string",
|
|
9234
9277
|
project: "Test string",
|
|
9235
9278
|
returnPartialSuccess: true,
|
|
9279
|
+
view: "Test string",
|
|
9236
9280
|
});
|
|
9237
9281
|
/** Sets the access control policy on the specified resource. Replaces any existing policy. */
|
|
9238
9282
|
await gapi.client.compute.instanceTemplates.setIamPolicy({
|
|
@@ -10801,6 +10845,13 @@ gapi.load('client', async () => {
|
|
|
10801
10845
|
externalIpEgressBandwidthTier: "Test string",
|
|
10802
10846
|
totalEgressBandwidthTier: "Test string",
|
|
10803
10847
|
},
|
|
10848
|
+
partnerMetadata: {
|
|
10849
|
+
A: {
|
|
10850
|
+
entries: {
|
|
10851
|
+
A: 42
|
|
10852
|
+
},
|
|
10853
|
+
}
|
|
10854
|
+
},
|
|
10804
10855
|
postKeyRevocationActionType: "Test string",
|
|
10805
10856
|
privateIpv6GoogleAccess: "Test string",
|
|
10806
10857
|
reservationAffinity: {
|
|
@@ -16218,6 +16269,11 @@ gapi.load('client', async () => {
|
|
|
16218
16269
|
},
|
|
16219
16270
|
commitment: "Test string",
|
|
16220
16271
|
creationTimestamp: "Test string",
|
|
16272
|
+
deleteAfterDuration: {
|
|
16273
|
+
nanos: 42,
|
|
16274
|
+
seconds: "Test string",
|
|
16275
|
+
},
|
|
16276
|
+
deleteAtTime: "Test string",
|
|
16221
16277
|
description: "Test string",
|
|
16222
16278
|
id: "Test string",
|
|
16223
16279
|
kind: "Test string",
|
|
@@ -16389,6 +16445,11 @@ gapi.load('client', async () => {
|
|
|
16389
16445
|
},
|
|
16390
16446
|
commitment: "Test string",
|
|
16391
16447
|
creationTimestamp: "Test string",
|
|
16448
|
+
deleteAfterDuration: {
|
|
16449
|
+
nanos: 42,
|
|
16450
|
+
seconds: "Test string",
|
|
16451
|
+
},
|
|
16452
|
+
deleteAtTime: "Test string",
|
|
16392
16453
|
description: "Test string",
|
|
16393
16454
|
id: "Test string",
|
|
16394
16455
|
kind: "Test string",
|
|
@@ -16517,6 +16578,11 @@ gapi.load('client', async () => {
|
|
|
16517
16578
|
},
|
|
16518
16579
|
commitment: "Test string",
|
|
16519
16580
|
creationTimestamp: "Test string",
|
|
16581
|
+
deleteAfterDuration: {
|
|
16582
|
+
nanos: 42,
|
|
16583
|
+
seconds: "Test string",
|
|
16584
|
+
},
|
|
16585
|
+
deleteAtTime: "Test string",
|
|
16520
16586
|
description: "Test string",
|
|
16521
16587
|
id: "Test string",
|
|
16522
16588
|
kind: "Test string",
|
|
@@ -18828,6 +18894,13 @@ gapi.load('client', async () => {
|
|
|
18828
18894
|
externalIpEgressBandwidthTier: "Test string",
|
|
18829
18895
|
totalEgressBandwidthTier: "Test string",
|
|
18830
18896
|
},
|
|
18897
|
+
partnerMetadata: {
|
|
18898
|
+
A: {
|
|
18899
|
+
entries: {
|
|
18900
|
+
A: 42
|
|
18901
|
+
},
|
|
18902
|
+
}
|
|
18903
|
+
},
|
|
18831
18904
|
postKeyRevocationActionType: "Test string",
|
|
18832
18905
|
privateIpv6GoogleAccess: "Test string",
|
|
18833
18906
|
reservationAffinity: {
|
|
@@ -18948,6 +19021,7 @@ gapi.load('client', async () => {
|
|
|
18948
19021
|
instanceTemplate: "Test string",
|
|
18949
19022
|
project: "Test string",
|
|
18950
19023
|
region: "Test string",
|
|
19024
|
+
view: "Test string",
|
|
18951
19025
|
});
|
|
18952
19026
|
/** Creates an instance template in the specified project and region using the global instance template whose URL is included in the request. */
|
|
18953
19027
|
await gapi.client.compute.regionInstanceTemplates.insert({
|
|
@@ -19183,6 +19257,13 @@ gapi.load('client', async () => {
|
|
|
19183
19257
|
externalIpEgressBandwidthTier: "Test string",
|
|
19184
19258
|
totalEgressBandwidthTier: "Test string",
|
|
19185
19259
|
},
|
|
19260
|
+
partnerMetadata: {
|
|
19261
|
+
A: {
|
|
19262
|
+
entries: {
|
|
19263
|
+
A: 42
|
|
19264
|
+
},
|
|
19265
|
+
}
|
|
19266
|
+
},
|
|
19186
19267
|
postKeyRevocationActionType: "Test string",
|
|
19187
19268
|
privateIpv6GoogleAccess: "Test string",
|
|
19188
19269
|
reservationAffinity: {
|
|
@@ -19291,6 +19372,7 @@ gapi.load('client', async () => {
|
|
|
19291
19372
|
project: "Test string",
|
|
19292
19373
|
region: "Test string",
|
|
19293
19374
|
returnPartialSuccess: true,
|
|
19375
|
+
view: "Test string",
|
|
19294
19376
|
});
|
|
19295
19377
|
/**
|
|
19296
19378
|
* Deletes the specified InstantSnapshot resource. Keep in mind that deleting a single instantSnapshot might not necessarily delete all the data on that instantSnapshot. If any data on the
|
|
@@ -24377,6 +24459,11 @@ gapi.load('client', async () => {
|
|
|
24377
24459
|
},
|
|
24378
24460
|
commitment: "Test string",
|
|
24379
24461
|
creationTimestamp: "Test string",
|
|
24462
|
+
deleteAfterDuration: {
|
|
24463
|
+
nanos: 42,
|
|
24464
|
+
seconds: "Test string",
|
|
24465
|
+
},
|
|
24466
|
+
deleteAtTime: "Test string",
|
|
24380
24467
|
description: "Test string",
|
|
24381
24468
|
id: "Test string",
|
|
24382
24469
|
kind: "Test string",
|
|
@@ -24605,6 +24692,11 @@ gapi.load('client', async () => {
|
|
|
24605
24692
|
},
|
|
24606
24693
|
commitment: "Test string",
|
|
24607
24694
|
creationTimestamp: "Test string",
|
|
24695
|
+
deleteAfterDuration: {
|
|
24696
|
+
nanos: 42,
|
|
24697
|
+
seconds: "Test string",
|
|
24698
|
+
},
|
|
24699
|
+
deleteAtTime: "Test string",
|
|
24608
24700
|
description: "Test string",
|
|
24609
24701
|
id: "Test string",
|
|
24610
24702
|
kind: "Test string",
|
|
@@ -26755,6 +26847,7 @@ gapi.load('client', async () => {
|
|
|
26755
26847
|
}, {
|
|
26756
26848
|
connectedEndpoints: [
|
|
26757
26849
|
{
|
|
26850
|
+
consumerNetwork: "Test string",
|
|
26758
26851
|
endpoint: "Test string",
|
|
26759
26852
|
pscConnectionId: "Test string",
|
|
26760
26853
|
status: "Test string",
|
|
@@ -26813,6 +26906,7 @@ gapi.load('client', async () => {
|
|
|
26813
26906
|
}, {
|
|
26814
26907
|
connectedEndpoints: [
|
|
26815
26908
|
{
|
|
26909
|
+
consumerNetwork: "Test string",
|
|
26816
26910
|
endpoint: "Test string",
|
|
26817
26911
|
pscConnectionId: "Test string",
|
|
26818
26912
|
status: "Test string",
|
|
@@ -31882,6 +31976,13 @@ gapi.load('client', async () => {
|
|
|
31882
31976
|
externalIpEgressBandwidthTier: "Test string",
|
|
31883
31977
|
totalEgressBandwidthTier: "Test string",
|
|
31884
31978
|
},
|
|
31979
|
+
partnerMetadata: {
|
|
31980
|
+
A: {
|
|
31981
|
+
entries: {
|
|
31982
|
+
A: 42
|
|
31983
|
+
},
|
|
31984
|
+
}
|
|
31985
|
+
},
|
|
31885
31986
|
postKeyRevocationActionType: "Test string",
|
|
31886
31987
|
privateIpv6GoogleAccess: "Test string",
|
|
31887
31988
|
reservationAffinity: {
|
|
@@ -32040,6 +32141,7 @@ gapi.load('client', async () => {
|
|
|
32040
32141
|
limit: 42,
|
|
32041
32142
|
limitName: "Test string",
|
|
32042
32143
|
metricName: "Test string",
|
|
32144
|
+
rolloutStatus: "Test string",
|
|
32043
32145
|
},
|
|
32044
32146
|
}
|
|
32045
32147
|
],
|