@maxim_mazurok/gapi.client.vmwareengine-v1 0.1.20260217 → 0.2.20260518
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 +609 -325
- package/package.json +1 -1
- package/readme.md +17 -0
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://vmwareengine.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260518
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -48,7 +48,12 @@ declare namespace gapi.client {
|
|
|
48
48
|
/** A Private Cloud resource name. */
|
|
49
49
|
privateCloud?: string;
|
|
50
50
|
/** Output only. State of the resource. New values may be added to this enum when appropriate. */
|
|
51
|
-
state?:
|
|
51
|
+
state?:
|
|
52
|
+
| 'STATE_UNSPECIFIED'
|
|
53
|
+
| 'ACTIVE'
|
|
54
|
+
| 'INACTIVE'
|
|
55
|
+
| 'DELETING'
|
|
56
|
+
| 'CREATING';
|
|
52
57
|
/** Output only. Target Resource Type defines the type of the target for the announcement */
|
|
53
58
|
targetResourceType?: string;
|
|
54
59
|
/** Output only. Last update time of this resource. */
|
|
@@ -64,7 +69,11 @@ declare namespace gapi.client {
|
|
|
64
69
|
/** Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members. */
|
|
65
70
|
exemptedMembers?: string[];
|
|
66
71
|
/** The log type that this config enables. */
|
|
67
|
-
logType?:
|
|
72
|
+
logType?:
|
|
73
|
+
| 'LOG_TYPE_UNSPECIFIED'
|
|
74
|
+
| 'ADMIN_READ'
|
|
75
|
+
| 'DATA_WRITE'
|
|
76
|
+
| 'DATA_READ';
|
|
68
77
|
}
|
|
69
78
|
interface AutoscalingPolicy {
|
|
70
79
|
/** Optional. Utilization thresholds pertaining to amount of consumed memory. */
|
|
@@ -112,7 +121,13 @@ declare namespace gapi.client {
|
|
|
112
121
|
/** Required. The map of cluster node types in this cluster, where the key is canonical identifier of the node type (corresponds to the `NodeType`). */
|
|
113
122
|
nodeTypeConfigs?: {[P in string]: NodeTypeConfig};
|
|
114
123
|
/** Output only. State of the resource. */
|
|
115
|
-
state?:
|
|
124
|
+
state?:
|
|
125
|
+
| 'STATE_UNSPECIFIED'
|
|
126
|
+
| 'ACTIVE'
|
|
127
|
+
| 'CREATING'
|
|
128
|
+
| 'UPDATING'
|
|
129
|
+
| 'DELETING'
|
|
130
|
+
| 'REPAIRING';
|
|
116
131
|
/** Optional. Configuration of a stretched cluster. Required for clusters that belong to a STRETCHED private cloud. */
|
|
117
132
|
stretchedClusterConfig?: StretchedClusterConfig;
|
|
118
133
|
/** Output only. System-generated unique identifier for the resource. */
|
|
@@ -150,7 +165,12 @@ declare namespace gapi.client {
|
|
|
150
165
|
/** Required. Settings for the NFS datastore. */
|
|
151
166
|
nfsDatastore?: NfsDatastore;
|
|
152
167
|
/** Output only. The state of the Datastore. */
|
|
153
|
-
state?:
|
|
168
|
+
state?:
|
|
169
|
+
| 'STATE_UNSPECIFIED'
|
|
170
|
+
| 'CREATING'
|
|
171
|
+
| 'ACTIVE'
|
|
172
|
+
| 'UPDATING'
|
|
173
|
+
| 'DELETING';
|
|
154
174
|
/** Output only. System-generated unique identifier for the resource. */
|
|
155
175
|
uid?: string;
|
|
156
176
|
/** Output only. Last update time of this resource. */
|
|
@@ -158,7 +178,7 @@ declare namespace gapi.client {
|
|
|
158
178
|
}
|
|
159
179
|
interface DatastoreMountConfig {
|
|
160
180
|
/** Optional. The access mode of the NFS volume. Optional. Default value used will be READ_WRITE */
|
|
161
|
-
accessMode?:
|
|
181
|
+
accessMode?: 'ACCESS_MODE_UNSPECIFIED' | 'READ_ONLY' | 'READ_WRITE';
|
|
162
182
|
/** Required. The resource name of the datastore to mount. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: `projects/my-project/locations/us-central1/datastores/my-datastore` */
|
|
163
183
|
datastore?: string;
|
|
164
184
|
/** Required. The network configuration for the datastore. */
|
|
@@ -166,7 +186,7 @@ declare namespace gapi.client {
|
|
|
166
186
|
/** Output only. File share name. */
|
|
167
187
|
fileShare?: string;
|
|
168
188
|
/** Optional. The NFS protocol supported by the NFS volume. Default value used will be NFS_V3 */
|
|
169
|
-
nfsVersion?:
|
|
189
|
+
nfsVersion?: 'NFS_VERSION_UNSPECIFIED' | 'NFS_V3';
|
|
170
190
|
/** Output only. Server IP addresses of the NFS volume. For NFS 3, you can only provide a single server IP address or DNS names. */
|
|
171
191
|
servers?: string[];
|
|
172
192
|
}
|
|
@@ -209,7 +229,7 @@ declare namespace gapi.client {
|
|
|
209
229
|
}
|
|
210
230
|
interface ExternalAccessRule {
|
|
211
231
|
/** The action that the external access rule performs. */
|
|
212
|
-
action?:
|
|
232
|
+
action?: 'ACTION_UNSPECIFIED' | 'ALLOW' | 'DENY';
|
|
213
233
|
/** Output only. Creation time of this resource. */
|
|
214
234
|
createTime?: string;
|
|
215
235
|
/** User-provided description for this external access rule. */
|
|
@@ -229,7 +249,12 @@ declare namespace gapi.client {
|
|
|
229
249
|
/** A list of source ports to which the external access rule applies. This field is only applicable for the UDP or TCP protocol. Each entry must be either an integer or a range. For example: `["22"]`, `["80","443"]`, or `["12345-12349"]`. To match all source ports, specify `["0-65535"]`. */
|
|
230
250
|
sourcePorts?: string[];
|
|
231
251
|
/** Output only. The state of the resource. */
|
|
232
|
-
state?:
|
|
252
|
+
state?:
|
|
253
|
+
| 'STATE_UNSPECIFIED'
|
|
254
|
+
| 'ACTIVE'
|
|
255
|
+
| 'CREATING'
|
|
256
|
+
| 'UPDATING'
|
|
257
|
+
| 'DELETING';
|
|
233
258
|
/** Output only. System-generated unique identifier for the resource. */
|
|
234
259
|
uid?: string;
|
|
235
260
|
/** Output only. Last update time of this resource. */
|
|
@@ -247,7 +272,12 @@ declare namespace gapi.client {
|
|
|
247
272
|
/** Output only. Identifier. The resource name of this external IP address. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: `projects/my-project/locations/us-central1-a/privateClouds/my-cloud/externalAddresses/my-address` */
|
|
248
273
|
name?: string;
|
|
249
274
|
/** Output only. The state of the resource. */
|
|
250
|
-
state?:
|
|
275
|
+
state?:
|
|
276
|
+
| 'STATE_UNSPECIFIED'
|
|
277
|
+
| 'ACTIVE'
|
|
278
|
+
| 'CREATING'
|
|
279
|
+
| 'UPDATING'
|
|
280
|
+
| 'DELETING';
|
|
251
281
|
/** Output only. System-generated unique identifier for the resource. */
|
|
252
282
|
uid?: string;
|
|
253
283
|
/** Output only. Last update time of this resource. */
|
|
@@ -284,7 +314,7 @@ declare namespace gapi.client {
|
|
|
284
314
|
/** Internal IP address of the appliance. */
|
|
285
315
|
internalIp?: string;
|
|
286
316
|
/** Output only. The state of the appliance. */
|
|
287
|
-
state?:
|
|
317
|
+
state?: 'STATE_UNSPECIFIED' | 'ACTIVE' | 'CREATING' | 'ACTIVATING';
|
|
288
318
|
/** Version of the appliance. */
|
|
289
319
|
version?: string;
|
|
290
320
|
}
|
|
@@ -296,7 +326,7 @@ declare namespace gapi.client {
|
|
|
296
326
|
/** Output only. The resource name of this HcxActivationKey. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: `projects/my-project/locations/us-central1/privateClouds/my-cloud/hcxActivationKeys/my-key` */
|
|
297
327
|
name?: string;
|
|
298
328
|
/** Output only. State of HCX activation key. */
|
|
299
|
-
state?:
|
|
329
|
+
state?: 'STATE_UNSPECIFIED' | 'AVAILABLE' | 'CONSUMED' | 'CREATING';
|
|
300
330
|
/** Output only. System-generated unique identifier for the resource. */
|
|
301
331
|
uid?: string;
|
|
302
332
|
}
|
|
@@ -488,7 +518,7 @@ declare namespace gapi.client {
|
|
|
488
518
|
}
|
|
489
519
|
interface LocationMetadata {
|
|
490
520
|
/** Output only. Capabilities of this location. */
|
|
491
|
-
capabilities?:
|
|
521
|
+
capabilities?: 'CAPABILITY_UNSPECIFIED' | 'STRETCHED_CLUSTERS'[];
|
|
492
522
|
}
|
|
493
523
|
interface LoggingServer {
|
|
494
524
|
/** Output only. Creation time of this resource. */
|
|
@@ -500,9 +530,15 @@ declare namespace gapi.client {
|
|
|
500
530
|
/** Required. Port number at which the logging server receives logs. */
|
|
501
531
|
port?: number;
|
|
502
532
|
/** Required. Protocol used by vCenter to send logs to a logging server. */
|
|
503
|
-
protocol?:
|
|
533
|
+
protocol?:
|
|
534
|
+
| 'PROTOCOL_UNSPECIFIED'
|
|
535
|
+
| 'UDP'
|
|
536
|
+
| 'TCP'
|
|
537
|
+
| 'TLS'
|
|
538
|
+
| 'SSL'
|
|
539
|
+
| 'RELP';
|
|
504
540
|
/** Required. The type of component that produces logs that will be forwarded to this logging server. */
|
|
505
|
-
sourceType?:
|
|
541
|
+
sourceType?: 'SOURCE_TYPE_UNSPECIFIED' | 'ESXI' | 'VCSA';
|
|
506
542
|
/** Output only. System-generated unique identifier for the resource. */
|
|
507
543
|
uid?: string;
|
|
508
544
|
/** Output only. Last update time of this resource. */
|
|
@@ -524,7 +560,13 @@ declare namespace gapi.client {
|
|
|
524
560
|
/** Output only. The resource name of this binding. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: `projects/my-project/locations/us-central1-a/privateClouds/my-cloud/managementDnsZoneBindings/my-management-dns-zone-binding` */
|
|
525
561
|
name?: string;
|
|
526
562
|
/** Output only. The state of the resource. */
|
|
527
|
-
state?:
|
|
563
|
+
state?:
|
|
564
|
+
| 'STATE_UNSPECIFIED'
|
|
565
|
+
| 'ACTIVE'
|
|
566
|
+
| 'CREATING'
|
|
567
|
+
| 'UPDATING'
|
|
568
|
+
| 'DELETING'
|
|
569
|
+
| 'FAILED';
|
|
528
570
|
/** Output only. System-generated unique identifier for the resource. */
|
|
529
571
|
uid?: string;
|
|
530
572
|
/** Output only. Last update time of this resource. */
|
|
@@ -534,6 +576,14 @@ declare namespace gapi.client {
|
|
|
534
576
|
/** Network to bind is a standard consumer VPC. Specify the name in the following form for consumer VPC network: `projects/{project}/global/networks/{network_id}`. `{project}` can either be a project number or a project ID. */
|
|
535
577
|
vpcNetwork?: string;
|
|
536
578
|
}
|
|
579
|
+
interface MigrateManagementVmsRequest {
|
|
580
|
+
/** Required. The user-provided identifier of the workload cluster to which the management VMs are to be migrated. The cluster must be in the same private cloud as the one specified in `name`, and must be a workload cluster. The eventual cluster name will be constructed from the private cloud name and this cluster ID. */
|
|
581
|
+
clusterId?: string;
|
|
582
|
+
/** Optional. Checksum used to ensure that the user-provided value is up to date before the server processes the request. The server compares provided checksum with the current checksum of the resource. If the user-provided value is out of date, this request returns an `ABORTED` error. */
|
|
583
|
+
etag?: string;
|
|
584
|
+
/** Optional. A 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 been completed. The server guarantees that a request doesn't result in creation of duplicate commitments for at least 60 minutes. 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 can check if the original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
585
|
+
requestId?: string;
|
|
586
|
+
}
|
|
537
587
|
interface MountDatastoreRequest {
|
|
538
588
|
/** Required. The datastore mount configuration. */
|
|
539
589
|
datastoreMountConfig?: DatastoreMountConfig;
|
|
@@ -541,6 +591,8 @@ declare namespace gapi.client {
|
|
|
541
591
|
ignoreColocation?: boolean;
|
|
542
592
|
/** Optional. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
543
593
|
requestId?: string;
|
|
594
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the request. If set to `false`, validates and executes the request. */
|
|
595
|
+
validateOnly?: boolean;
|
|
544
596
|
}
|
|
545
597
|
interface NetworkConfig {
|
|
546
598
|
/** Output only. DNS Server IP of the Private Cloud. All DNS queries can be forwarded to this address for name resolution of Private Cloud's management entities like vCenter, NSX-T Manager and ESXi hosts. */
|
|
@@ -576,9 +628,23 @@ declare namespace gapi.client {
|
|
|
576
628
|
/** Required. The relative resource name of the network to peer with a standard VMware Engine network. The provided network can be a consumer VPC network or another standard VMware Engine network. If the `peer_network_type` is VMWARE_ENGINE_NETWORK, specify the name in the form: `projects/{project}/locations/global/vmwareEngineNetworks/{vmware_engine_network_id}`. Otherwise specify the name in the form: `projects/{project}/global/networks/{network_id}`, where `{project}` can either be a project number or a project ID. */
|
|
577
629
|
peerNetwork?: string;
|
|
578
630
|
/** Required. The type of the network to peer with the VMware Engine network. */
|
|
579
|
-
peerNetworkType?:
|
|
631
|
+
peerNetworkType?:
|
|
632
|
+
| 'PEER_NETWORK_TYPE_UNSPECIFIED'
|
|
633
|
+
| 'STANDARD'
|
|
634
|
+
| 'VMWARE_ENGINE_NETWORK'
|
|
635
|
+
| 'PRIVATE_SERVICES_ACCESS'
|
|
636
|
+
| 'NETAPP_CLOUD_VOLUMES'
|
|
637
|
+
| 'THIRD_PARTY_SERVICE'
|
|
638
|
+
| 'DELL_POWERSCALE'
|
|
639
|
+
| 'GOOGLE_CLOUD_NETAPP_VOLUMES'
|
|
640
|
+
| 'GOOGLE_CLOUD_FILESTORE_INSTANCES';
|
|
580
641
|
/** Output only. State of the network peering. This field has a value of 'ACTIVE' when there's a matching configuration in the peer network. New values may be added to this enum when appropriate. */
|
|
581
|
-
state?:
|
|
642
|
+
state?:
|
|
643
|
+
| 'STATE_UNSPECIFIED'
|
|
644
|
+
| 'INACTIVE'
|
|
645
|
+
| 'ACTIVE'
|
|
646
|
+
| 'CREATING'
|
|
647
|
+
| 'DELETING';
|
|
582
648
|
/** Output only. Output Only. Details about the current state of the network peering. */
|
|
583
649
|
stateDetails?: string;
|
|
584
650
|
/** Output only. System-generated unique identifier for the resource. */
|
|
@@ -614,7 +680,7 @@ declare namespace gapi.client {
|
|
|
614
680
|
/** True if the service is enabled; false otherwise. */
|
|
615
681
|
enabled?: boolean;
|
|
616
682
|
/** Output only. State of the service. New values may be added to this enum when appropriate. */
|
|
617
|
-
state?:
|
|
683
|
+
state?: 'STATE_UNSPECIFIED' | 'UNPROVISIONED' | 'RECONCILING' | 'ACTIVE';
|
|
618
684
|
}
|
|
619
685
|
interface NfsDatastore {
|
|
620
686
|
/** Google file service configuration */
|
|
@@ -636,7 +702,12 @@ declare namespace gapi.client {
|
|
|
636
702
|
/** Output only. The canonical identifier of the node type (corresponds to the `NodeType`). For example: standard-72. */
|
|
637
703
|
nodeTypeId?: string;
|
|
638
704
|
/** Output only. The state of the appliance. */
|
|
639
|
-
state?:
|
|
705
|
+
state?:
|
|
706
|
+
| 'STATE_UNSPECIFIED'
|
|
707
|
+
| 'ACTIVE'
|
|
708
|
+
| 'CREATING'
|
|
709
|
+
| 'FAILED'
|
|
710
|
+
| 'UPGRADING';
|
|
640
711
|
/** Output only. The version number of the VMware ESXi management component in this cluster. */
|
|
641
712
|
version?: string;
|
|
642
713
|
}
|
|
@@ -644,7 +715,7 @@ declare namespace gapi.client {
|
|
|
644
715
|
/** Output only. List of possible values of custom core count. */
|
|
645
716
|
availableCustomCoreCounts?: number[];
|
|
646
717
|
/** Output only. Capabilities of this node type. */
|
|
647
|
-
capabilities?:
|
|
718
|
+
capabilities?: 'CAPABILITY_UNSPECIFIED' | 'STRETCHED_CLUSTERS'[];
|
|
648
719
|
/** Output only. The amount of storage available, defined in GB. */
|
|
649
720
|
diskSizeGb?: number;
|
|
650
721
|
/** Output only. The friendly name for this node type. For example: ve1-standard-72 */
|
|
@@ -652,7 +723,7 @@ declare namespace gapi.client {
|
|
|
652
723
|
/** Output only. Families of the node type. For node types to be in the same cluster they must share at least one element in the `families`. */
|
|
653
724
|
families?: string[];
|
|
654
725
|
/** Output only. The type of the resource. */
|
|
655
|
-
kind?:
|
|
726
|
+
kind?: 'KIND_UNSPECIFIED' | 'STANDARD' | 'STORAGE_ONLY';
|
|
656
727
|
/** Output only. The amount of physical memory available, defined in GB. */
|
|
657
728
|
memoryGb?: number;
|
|
658
729
|
/** Output only. The resource name of this node type. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: `projects/my-proj/locations/us-central1-a/nodeTypes/standard-72` */
|
|
@@ -676,7 +747,7 @@ declare namespace gapi.client {
|
|
|
676
747
|
/** Internal IP address of the appliance. */
|
|
677
748
|
internalIp?: string;
|
|
678
749
|
/** Output only. The state of the appliance. */
|
|
679
|
-
state?:
|
|
750
|
+
state?: 'STATE_UNSPECIFIED' | 'ACTIVE' | 'CREATING';
|
|
680
751
|
/** Version of the appliance. */
|
|
681
752
|
version?: string;
|
|
682
753
|
}
|
|
@@ -712,7 +783,7 @@ declare namespace gapi.client {
|
|
|
712
783
|
/** Output only. Destination range of the peering route in CIDR notation. */
|
|
713
784
|
destRange?: string;
|
|
714
785
|
/** Output only. Direction of the routes exchanged with the peer network, from the VMware Engine network perspective: * Routes of direction `INCOMING` are imported from the peer network. * Routes of direction `OUTGOING` are exported from the intranet VPC network of the VMware Engine network. */
|
|
715
|
-
direction?:
|
|
786
|
+
direction?: 'DIRECTION_UNSPECIFIED' | 'INCOMING' | 'OUTGOING';
|
|
716
787
|
/** Output only. True if the peering route has been imported from a peered VPC network; false otherwise. The import happens if the field `NetworkPeering.importCustomRoutes` is true for this network, `NetworkPeering.exportCustomRoutes` is true for the peer VPC network, and the import does not result in a route conflict. */
|
|
717
788
|
imported?: boolean;
|
|
718
789
|
/** Output only. Region containing the next hop of the peering route. This field only applies to dynamic routes in the peer VPC network. */
|
|
@@ -720,7 +791,11 @@ declare namespace gapi.client {
|
|
|
720
791
|
/** Output only. The priority of the peering route. */
|
|
721
792
|
priority?: string;
|
|
722
793
|
/** Output only. Type of the route in the peer VPC network. */
|
|
723
|
-
type?:
|
|
794
|
+
type?:
|
|
795
|
+
| 'TYPE_UNSPECIFIED'
|
|
796
|
+
| 'DYNAMIC_PEERING_ROUTE'
|
|
797
|
+
| 'STATIC_PEERING_ROUTE'
|
|
798
|
+
| 'SUBNET_PEERING_ROUTE';
|
|
724
799
|
}
|
|
725
800
|
interface Policy {
|
|
726
801
|
/** Specifies cloud audit logging configuration for this policy. */
|
|
@@ -758,9 +833,16 @@ declare namespace gapi.client {
|
|
|
758
833
|
/** Output only. NSX appliance. */
|
|
759
834
|
nsx?: Nsx;
|
|
760
835
|
/** Output only. State of the resource. New values may be added to this enum when appropriate. */
|
|
761
|
-
state?:
|
|
836
|
+
state?:
|
|
837
|
+
| 'STATE_UNSPECIFIED'
|
|
838
|
+
| 'ACTIVE'
|
|
839
|
+
| 'CREATING'
|
|
840
|
+
| 'UPDATING'
|
|
841
|
+
| 'FAILED'
|
|
842
|
+
| 'DELETED'
|
|
843
|
+
| 'PURGING';
|
|
762
844
|
/** Optional. Type of the private cloud. Defaults to STANDARD. */
|
|
763
|
-
type?:
|
|
845
|
+
type?: 'STANDARD' | 'TIME_LIMITED' | 'STRETCHED';
|
|
764
846
|
/** Output only. System-generated unique identifier for the resource. */
|
|
765
847
|
uid?: string;
|
|
766
848
|
/** Output only. Last update time of this resource. */
|
|
@@ -778,15 +860,30 @@ declare namespace gapi.client {
|
|
|
778
860
|
/** Output only. VPC network peering id between given network VPC and VMwareEngineNetwork. */
|
|
779
861
|
peeringId?: string;
|
|
780
862
|
/** Output only. Peering state between service network and VMware Engine network. */
|
|
781
|
-
peeringState?:
|
|
863
|
+
peeringState?:
|
|
864
|
+
| 'PEERING_STATE_UNSPECIFIED'
|
|
865
|
+
| 'PEERING_ACTIVE'
|
|
866
|
+
| 'PEERING_INACTIVE';
|
|
782
867
|
/** Optional. Routing Mode. Default value is set to GLOBAL. For type = PRIVATE_SERVICE_ACCESS, this field can be set to GLOBAL or REGIONAL, for other types only GLOBAL is supported. */
|
|
783
|
-
routingMode?:
|
|
868
|
+
routingMode?: 'ROUTING_MODE_UNSPECIFIED' | 'GLOBAL' | 'REGIONAL';
|
|
784
869
|
/** Required. Service network to create private connection. Specify the name in the following form: `projects/{project}/global/networks/{network_id}` For type = PRIVATE_SERVICE_ACCESS, this field represents servicenetworking VPC, e.g. projects/project-tp/global/networks/servicenetworking. For type = NETAPP_CLOUD_VOLUME, this field represents NetApp service VPC, e.g. projects/project-tp/global/networks/netapp-tenant-vpc. For type = DELL_POWERSCALE, this field represent Dell service VPC, e.g. projects/project-tp/global/networks/dell-tenant-vpc. For type= THIRD_PARTY_SERVICE, this field could represent a consumer VPC or any other producer VPC to which the VMware Engine Network needs to be connected, e.g. projects/project/global/networks/vpc. */
|
|
785
870
|
serviceNetwork?: string;
|
|
786
871
|
/** Output only. State of the private connection. */
|
|
787
|
-
state?:
|
|
872
|
+
state?:
|
|
873
|
+
| 'STATE_UNSPECIFIED'
|
|
874
|
+
| 'CREATING'
|
|
875
|
+
| 'ACTIVE'
|
|
876
|
+
| 'UPDATING'
|
|
877
|
+
| 'DELETING'
|
|
878
|
+
| 'UNPROVISIONED'
|
|
879
|
+
| 'FAILED';
|
|
788
880
|
/** Required. Private connection type. */
|
|
789
|
-
type?:
|
|
881
|
+
type?:
|
|
882
|
+
| 'TYPE_UNSPECIFIED'
|
|
883
|
+
| 'PRIVATE_SERVICE_ACCESS'
|
|
884
|
+
| 'NETAPP_CLOUD_VOLUMES'
|
|
885
|
+
| 'DELL_POWERSCALE'
|
|
886
|
+
| 'THIRD_PARTY_SERVICE';
|
|
790
887
|
/** Output only. System-generated unique identifier for the resource. */
|
|
791
888
|
uid?: string;
|
|
792
889
|
/** Output only. Last update time of this resource. */
|
|
@@ -822,7 +919,7 @@ declare namespace gapi.client {
|
|
|
822
919
|
/** Output only. Output Only. The schedule is open for edits during this time interval or window. */
|
|
823
920
|
editWindow?: Interval;
|
|
824
921
|
/** Output only. Output Only. Indicates who most recently edited the upgrade schedule. The value is updated whenever the upgrade is rescheduled. */
|
|
825
|
-
lastEditor?:
|
|
922
|
+
lastEditor?: 'EDITOR_UNSPECIFIED' | 'SYSTEM' | 'USER';
|
|
826
923
|
/** Required. The scheduled start time for the upgrade. */
|
|
827
924
|
startTime?: string;
|
|
828
925
|
/** Required. Weekly time windows for upgrade activities. The server performs upgrade activities during these time windows to minimize disruptions. */
|
|
@@ -838,7 +935,7 @@ declare namespace gapi.client {
|
|
|
838
935
|
/** The status code, which should be an enum value of google.rpc.Code. */
|
|
839
936
|
code?: number;
|
|
840
937
|
/** A list of messages that carry the error details. There is a common set of message types for APIs to use. */
|
|
841
|
-
details?:
|
|
938
|
+
details?: {[P in string]: any}[];
|
|
842
939
|
/** A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client. */
|
|
843
940
|
message?: string;
|
|
844
941
|
}
|
|
@@ -856,7 +953,14 @@ declare namespace gapi.client {
|
|
|
856
953
|
/** Output only. Identifier. The resource name of this subnet. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: `projects/my-project/locations/us-central1-a/privateClouds/my-cloud/subnets/my-subnet` */
|
|
857
954
|
name?: string;
|
|
858
955
|
/** Output only. The state of the resource. */
|
|
859
|
-
state?:
|
|
956
|
+
state?:
|
|
957
|
+
| 'STATE_UNSPECIFIED'
|
|
958
|
+
| 'ACTIVE'
|
|
959
|
+
| 'CREATING'
|
|
960
|
+
| 'UPDATING'
|
|
961
|
+
| 'DELETING'
|
|
962
|
+
| 'RECONCILING'
|
|
963
|
+
| 'FAILED';
|
|
860
964
|
/** Output only. The type of the subnet. For example "management" or "userDefined". */
|
|
861
965
|
type?: string;
|
|
862
966
|
/** Output only. VLAN ID of the VLAN on which the subnet is configured */
|
|
@@ -896,7 +1000,15 @@ declare namespace gapi.client {
|
|
|
896
1000
|
}
|
|
897
1001
|
interface TimeWindow {
|
|
898
1002
|
/** Required. Day of the week for this window. */
|
|
899
|
-
dayOfWeek?:
|
|
1003
|
+
dayOfWeek?:
|
|
1004
|
+
| 'DAY_OF_WEEK_UNSPECIFIED'
|
|
1005
|
+
| 'MONDAY'
|
|
1006
|
+
| 'TUESDAY'
|
|
1007
|
+
| 'WEDNESDAY'
|
|
1008
|
+
| 'THURSDAY'
|
|
1009
|
+
| 'FRIDAY'
|
|
1010
|
+
| 'SATURDAY'
|
|
1011
|
+
| 'SUNDAY';
|
|
900
1012
|
/** Required. The duration of the window. The max allowed duration for any window is 24 hours. */
|
|
901
1013
|
duration?: string;
|
|
902
1014
|
/** Required. Time in UTC when the window starts. */
|
|
@@ -911,6 +1023,8 @@ declare namespace gapi.client {
|
|
|
911
1023
|
datastore?: string;
|
|
912
1024
|
/** Optional. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
913
1025
|
requestId?: string;
|
|
1026
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the request. If set to `false`, validates and executes the request. */
|
|
1027
|
+
validateOnly?: boolean;
|
|
914
1028
|
}
|
|
915
1029
|
interface Upgrade {
|
|
916
1030
|
/** Output only. Output Only. The list of component upgrades. */
|
|
@@ -932,11 +1046,28 @@ declare namespace gapi.client {
|
|
|
932
1046
|
/** Output only. Output Only. The start version */
|
|
933
1047
|
startVersion?: string;
|
|
934
1048
|
/** Output only. The current state of the upgrade. */
|
|
935
|
-
state?:
|
|
1049
|
+
state?:
|
|
1050
|
+
| 'STATE_UNSPECIFIED'
|
|
1051
|
+
| 'SCHEDULED'
|
|
1052
|
+
| 'ONGOING'
|
|
1053
|
+
| 'SUCCEEDED'
|
|
1054
|
+
| 'PAUSED'
|
|
1055
|
+
| 'FAILED'
|
|
1056
|
+
| 'CANCELLING'
|
|
1057
|
+
| 'CANCELLED'
|
|
1058
|
+
| 'RESCHEDULING';
|
|
936
1059
|
/** Output only. Output Only. The target version */
|
|
937
1060
|
targetVersion?: string;
|
|
938
1061
|
/** Output only. Output Only. The type of upgrade. */
|
|
939
|
-
type?:
|
|
1062
|
+
type?:
|
|
1063
|
+
| 'TYPE_UNSPECIFIED'
|
|
1064
|
+
| 'VSPHERE_UPGRADE'
|
|
1065
|
+
| 'VSPHERE_PATCH'
|
|
1066
|
+
| 'WORKAROUND'
|
|
1067
|
+
| 'FIRMWARE_UPGRADE'
|
|
1068
|
+
| 'SWITCH_UPGRADE'
|
|
1069
|
+
| 'OTHER'
|
|
1070
|
+
| 'INFRASTRUCTURE_UPGRADE';
|
|
940
1071
|
/** Output only. System-generated unique identifier for the resource. */
|
|
941
1072
|
uid?: string;
|
|
942
1073
|
/** Output only. Output Only. Last update time of this resource. */
|
|
@@ -950,7 +1081,7 @@ declare namespace gapi.client {
|
|
|
950
1081
|
/** Internal IP address of the appliance. */
|
|
951
1082
|
internalIp?: string;
|
|
952
1083
|
/** Output only. The state of the appliance. */
|
|
953
|
-
state?:
|
|
1084
|
+
state?: 'STATE_UNSPECIFIED' | 'ACTIVE' | 'CREATING';
|
|
954
1085
|
/** Version of the appliance. */
|
|
955
1086
|
version?: string;
|
|
956
1087
|
}
|
|
@@ -964,9 +1095,14 @@ declare namespace gapi.client {
|
|
|
964
1095
|
/** Output only. Identifier. The resource name of the VMware Engine network. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: `projects/my-project/locations/global/vmwareEngineNetworks/my-network` */
|
|
965
1096
|
name?: string;
|
|
966
1097
|
/** Output only. State of the VMware Engine network. */
|
|
967
|
-
state?:
|
|
1098
|
+
state?:
|
|
1099
|
+
| 'STATE_UNSPECIFIED'
|
|
1100
|
+
| 'CREATING'
|
|
1101
|
+
| 'ACTIVE'
|
|
1102
|
+
| 'UPDATING'
|
|
1103
|
+
| 'DELETING';
|
|
968
1104
|
/** Required. VMware Engine network type. */
|
|
969
|
-
type?:
|
|
1105
|
+
type?: 'TYPE_UNSPECIFIED' | 'LEGACY' | 'STANDARD';
|
|
970
1106
|
/** Output only. System-generated unique identifier for the resource. */
|
|
971
1107
|
uid?: string;
|
|
972
1108
|
/** Output only. Last update time of this resource. */
|
|
@@ -976,23 +1112,61 @@ declare namespace gapi.client {
|
|
|
976
1112
|
}
|
|
977
1113
|
interface VmwareUpgradeComponent {
|
|
978
1114
|
/** Output only. Type of component */
|
|
979
|
-
componentType?:
|
|
1115
|
+
componentType?:
|
|
1116
|
+
| 'VMWARE_COMPONENT_TYPE_UNSPECIFIED'
|
|
1117
|
+
| 'VCENTER'
|
|
1118
|
+
| 'ESXI'
|
|
1119
|
+
| 'NSXT_UC'
|
|
1120
|
+
| 'NSXT_EDGE'
|
|
1121
|
+
| 'NSXT_MGR'
|
|
1122
|
+
| 'HCX'
|
|
1123
|
+
| 'VSAN'
|
|
1124
|
+
| 'DVS'
|
|
1125
|
+
| 'NAMESERVER_VM'
|
|
1126
|
+
| 'KMS_VM'
|
|
1127
|
+
| 'WITNESS_VM'
|
|
1128
|
+
| 'NSXT'
|
|
1129
|
+
| 'CLUSTER'
|
|
1130
|
+
| 'VM_TOOLS';
|
|
980
1131
|
/** Output only. Component's upgrade state. */
|
|
981
|
-
state?:
|
|
1132
|
+
state?:
|
|
1133
|
+
| 'STATE_UNSPECIFIED'
|
|
1134
|
+
| 'RUNNING'
|
|
1135
|
+
| 'PAUSED'
|
|
1136
|
+
| 'SUCCEEDED'
|
|
1137
|
+
| 'FAILED'
|
|
1138
|
+
| 'NOT_STARTED'
|
|
1139
|
+
| 'NOT_APPLICABLE';
|
|
982
1140
|
}
|
|
983
1141
|
interface VpcNetwork {
|
|
984
1142
|
/** Output only. The relative resource name of the service VPC network this VMware Engine network is attached to. For example: `projects/123123/global/networks/my-network` */
|
|
985
1143
|
network?: string;
|
|
986
1144
|
/** Output only. Type of VPC network (INTRANET, INTERNET, or GOOGLE_CLOUD) */
|
|
987
|
-
type?:
|
|
1145
|
+
type?: 'TYPE_UNSPECIFIED' | 'INTRANET' | 'INTERNET' | 'GOOGLE_CLOUD';
|
|
988
1146
|
}
|
|
989
1147
|
interface WeeklyTimeInterval {
|
|
990
1148
|
/** Output only. The day on which the interval ends. Can be same as start day. */
|
|
991
|
-
endDay?:
|
|
1149
|
+
endDay?:
|
|
1150
|
+
| 'DAY_OF_WEEK_UNSPECIFIED'
|
|
1151
|
+
| 'MONDAY'
|
|
1152
|
+
| 'TUESDAY'
|
|
1153
|
+
| 'WEDNESDAY'
|
|
1154
|
+
| 'THURSDAY'
|
|
1155
|
+
| 'FRIDAY'
|
|
1156
|
+
| 'SATURDAY'
|
|
1157
|
+
| 'SUNDAY';
|
|
992
1158
|
/** Output only. The time on the end day at which the interval ends. */
|
|
993
1159
|
endTime?: TimeOfDay;
|
|
994
1160
|
/** Output only. The day on which the interval starts. */
|
|
995
|
-
startDay?:
|
|
1161
|
+
startDay?:
|
|
1162
|
+
| 'DAY_OF_WEEK_UNSPECIFIED'
|
|
1163
|
+
| 'MONDAY'
|
|
1164
|
+
| 'TUESDAY'
|
|
1165
|
+
| 'WEDNESDAY'
|
|
1166
|
+
| 'THURSDAY'
|
|
1167
|
+
| 'FRIDAY'
|
|
1168
|
+
| 'SATURDAY'
|
|
1169
|
+
| 'SUNDAY';
|
|
996
1170
|
/** Output only. The time on the start day at which the interval starts. */
|
|
997
1171
|
startTime?: TimeOfDay;
|
|
998
1172
|
}
|
|
@@ -1000,11 +1174,11 @@ declare namespace gapi.client {
|
|
|
1000
1174
|
/** Retrieves a `Announcement` by its resource name. */
|
|
1001
1175
|
get(request?: {
|
|
1002
1176
|
/** V1 error format. */
|
|
1003
|
-
'$.xgafv'?:
|
|
1177
|
+
'$.xgafv'?: '1' | '2';
|
|
1004
1178
|
/** OAuth access token. */
|
|
1005
1179
|
access_token?: string;
|
|
1006
1180
|
/** Data format for response. */
|
|
1007
|
-
alt?:
|
|
1181
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1008
1182
|
/** JSONP */
|
|
1009
1183
|
callback?: string;
|
|
1010
1184
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1027,11 +1201,11 @@ declare namespace gapi.client {
|
|
|
1027
1201
|
/** Lists `Announcements` for a given region and project */
|
|
1028
1202
|
list(request?: {
|
|
1029
1203
|
/** V1 error format. */
|
|
1030
|
-
'$.xgafv'?:
|
|
1204
|
+
'$.xgafv'?: '1' | '2';
|
|
1031
1205
|
/** OAuth access token. */
|
|
1032
1206
|
access_token?: string;
|
|
1033
1207
|
/** Data format for response. */
|
|
1034
|
-
alt?:
|
|
1208
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1035
1209
|
/** JSONP */
|
|
1036
1210
|
callback?: string;
|
|
1037
1211
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1064,11 +1238,11 @@ declare namespace gapi.client {
|
|
|
1064
1238
|
/** Creates a new `Datastore` resource in a given project and location. */
|
|
1065
1239
|
create(request: {
|
|
1066
1240
|
/** V1 error format. */
|
|
1067
|
-
'$.xgafv'?:
|
|
1241
|
+
'$.xgafv'?: '1' | '2';
|
|
1068
1242
|
/** OAuth access token. */
|
|
1069
1243
|
access_token?: string;
|
|
1070
1244
|
/** Data format for response. */
|
|
1071
|
-
alt?:
|
|
1245
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1072
1246
|
/** JSONP */
|
|
1073
1247
|
callback?: string;
|
|
1074
1248
|
/** Required. The user-provided identifier of the datastore to be created. This identifier must be unique among each `Datastore` within the parent and becomes the final token in the name URI. The identifier must meet the following requirements: * Only contains 1-63 alphanumeric characters and hyphens * Begins with an alphabetical character * Ends with a non-hyphen character * Not formatted as a UUID * Complies with [RFC 1034](https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5) */
|
|
@@ -1097,11 +1271,11 @@ declare namespace gapi.client {
|
|
|
1097
1271
|
create(
|
|
1098
1272
|
request: {
|
|
1099
1273
|
/** V1 error format. */
|
|
1100
|
-
'$.xgafv'?:
|
|
1274
|
+
'$.xgafv'?: '1' | '2';
|
|
1101
1275
|
/** OAuth access token. */
|
|
1102
1276
|
access_token?: string;
|
|
1103
1277
|
/** Data format for response. */
|
|
1104
|
-
alt?:
|
|
1278
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1105
1279
|
/** JSONP */
|
|
1106
1280
|
callback?: string;
|
|
1107
1281
|
/** Required. The user-provided identifier of the datastore to be created. This identifier must be unique among each `Datastore` within the parent and becomes the final token in the name URI. The identifier must meet the following requirements: * Only contains 1-63 alphanumeric characters and hyphens * Begins with an alphabetical character * Ends with a non-hyphen character * Not formatted as a UUID * Complies with [RFC 1034](https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5) */
|
|
@@ -1130,11 +1304,11 @@ declare namespace gapi.client {
|
|
|
1130
1304
|
/** Deletes a `Datastore` resource. You can only delete a Datastore after all resources that refer to it are deleted. For example, multiple clusters of the same private cloud or different private clouds can refer to the same datastore. */
|
|
1131
1305
|
delete(request?: {
|
|
1132
1306
|
/** V1 error format. */
|
|
1133
|
-
'$.xgafv'?:
|
|
1307
|
+
'$.xgafv'?: '1' | '2';
|
|
1134
1308
|
/** OAuth access token. */
|
|
1135
1309
|
access_token?: string;
|
|
1136
1310
|
/** Data format for response. */
|
|
1137
|
-
alt?:
|
|
1311
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1138
1312
|
/** JSONP */
|
|
1139
1313
|
callback?: string;
|
|
1140
1314
|
/** Optional. Checksum used to ensure that the user-provided value is up to date before the server processes the request. The server compares provided checksum with the current checksum of the resource. If the user-provided value is out of date, this request returns an `ABORTED` error. */
|
|
@@ -1161,11 +1335,11 @@ declare namespace gapi.client {
|
|
|
1161
1335
|
/** Retrieves a `Datastore` resource by its resource name. The resource contains details of the Datastore, such as its description, subnets, type, and more. */
|
|
1162
1336
|
get(request?: {
|
|
1163
1337
|
/** V1 error format. */
|
|
1164
|
-
'$.xgafv'?:
|
|
1338
|
+
'$.xgafv'?: '1' | '2';
|
|
1165
1339
|
/** OAuth access token. */
|
|
1166
1340
|
access_token?: string;
|
|
1167
1341
|
/** Data format for response. */
|
|
1168
|
-
alt?:
|
|
1342
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1169
1343
|
/** JSONP */
|
|
1170
1344
|
callback?: string;
|
|
1171
1345
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1188,11 +1362,11 @@ declare namespace gapi.client {
|
|
|
1188
1362
|
/** Lists `Datastore` resources in a given project and location. */
|
|
1189
1363
|
list(request?: {
|
|
1190
1364
|
/** V1 error format. */
|
|
1191
|
-
'$.xgafv'?:
|
|
1365
|
+
'$.xgafv'?: '1' | '2';
|
|
1192
1366
|
/** OAuth access token. */
|
|
1193
1367
|
access_token?: string;
|
|
1194
1368
|
/** Data format for response. */
|
|
1195
|
-
alt?:
|
|
1369
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1196
1370
|
/** JSONP */
|
|
1197
1371
|
callback?: string;
|
|
1198
1372
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1225,11 +1399,11 @@ declare namespace gapi.client {
|
|
|
1225
1399
|
/** Modifies a Datastore resource. Only fields specified in `updateMask` are applied. */
|
|
1226
1400
|
patch(request: {
|
|
1227
1401
|
/** V1 error format. */
|
|
1228
|
-
'$.xgafv'?:
|
|
1402
|
+
'$.xgafv'?: '1' | '2';
|
|
1229
1403
|
/** OAuth access token. */
|
|
1230
1404
|
access_token?: string;
|
|
1231
1405
|
/** Data format for response. */
|
|
1232
|
-
alt?:
|
|
1406
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1233
1407
|
/** JSONP */
|
|
1234
1408
|
callback?: string;
|
|
1235
1409
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1258,11 +1432,11 @@ declare namespace gapi.client {
|
|
|
1258
1432
|
patch(
|
|
1259
1433
|
request: {
|
|
1260
1434
|
/** V1 error format. */
|
|
1261
|
-
'$.xgafv'?:
|
|
1435
|
+
'$.xgafv'?: '1' | '2';
|
|
1262
1436
|
/** OAuth access token. */
|
|
1263
1437
|
access_token?: string;
|
|
1264
1438
|
/** Data format for response. */
|
|
1265
|
-
alt?:
|
|
1439
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1266
1440
|
/** JSONP */
|
|
1267
1441
|
callback?: string;
|
|
1268
1442
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1293,11 +1467,11 @@ declare namespace gapi.client {
|
|
|
1293
1467
|
/** Grants the bind permission to the customer provided principal(user / service account) to bind their DNS zone with the intranet VPC associated with the project. DnsBindPermission is a global resource and location can only be global. */
|
|
1294
1468
|
grant(request: {
|
|
1295
1469
|
/** V1 error format. */
|
|
1296
|
-
'$.xgafv'?:
|
|
1470
|
+
'$.xgafv'?: '1' | '2';
|
|
1297
1471
|
/** OAuth access token. */
|
|
1298
1472
|
access_token?: string;
|
|
1299
1473
|
/** Data format for response. */
|
|
1300
|
-
alt?:
|
|
1474
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1301
1475
|
/** JSONP */
|
|
1302
1476
|
callback?: string;
|
|
1303
1477
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1322,11 +1496,11 @@ declare namespace gapi.client {
|
|
|
1322
1496
|
grant(
|
|
1323
1497
|
request: {
|
|
1324
1498
|
/** V1 error format. */
|
|
1325
|
-
'$.xgafv'?:
|
|
1499
|
+
'$.xgafv'?: '1' | '2';
|
|
1326
1500
|
/** OAuth access token. */
|
|
1327
1501
|
access_token?: string;
|
|
1328
1502
|
/** Data format for response. */
|
|
1329
|
-
alt?:
|
|
1503
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1330
1504
|
/** JSONP */
|
|
1331
1505
|
callback?: string;
|
|
1332
1506
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1351,11 +1525,11 @@ declare namespace gapi.client {
|
|
|
1351
1525
|
/** Revokes the bind permission from the customer provided principal(user / service account) on the intranet VPC associated with the consumer project. DnsBindPermission is a global resource and location can only be global. */
|
|
1352
1526
|
revoke(request: {
|
|
1353
1527
|
/** V1 error format. */
|
|
1354
|
-
'$.xgafv'?:
|
|
1528
|
+
'$.xgafv'?: '1' | '2';
|
|
1355
1529
|
/** OAuth access token. */
|
|
1356
1530
|
access_token?: string;
|
|
1357
1531
|
/** Data format for response. */
|
|
1358
|
-
alt?:
|
|
1532
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1359
1533
|
/** JSONP */
|
|
1360
1534
|
callback?: string;
|
|
1361
1535
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1380,11 +1554,11 @@ declare namespace gapi.client {
|
|
|
1380
1554
|
revoke(
|
|
1381
1555
|
request: {
|
|
1382
1556
|
/** V1 error format. */
|
|
1383
|
-
'$.xgafv'?:
|
|
1557
|
+
'$.xgafv'?: '1' | '2';
|
|
1384
1558
|
/** OAuth access token. */
|
|
1385
1559
|
access_token?: string;
|
|
1386
1560
|
/** Data format for response. */
|
|
1387
|
-
alt?:
|
|
1561
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1388
1562
|
/** JSONP */
|
|
1389
1563
|
callback?: string;
|
|
1390
1564
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1411,11 +1585,11 @@ declare namespace gapi.client {
|
|
|
1411
1585
|
/** Lists the network peering routes exchanged over a peering connection. NetworkPeering is a global resource and location can only be global. */
|
|
1412
1586
|
list(request?: {
|
|
1413
1587
|
/** V1 error format. */
|
|
1414
|
-
'$.xgafv'?:
|
|
1588
|
+
'$.xgafv'?: '1' | '2';
|
|
1415
1589
|
/** OAuth access token. */
|
|
1416
1590
|
access_token?: string;
|
|
1417
1591
|
/** Data format for response. */
|
|
1418
|
-
alt?:
|
|
1592
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1419
1593
|
/** JSONP */
|
|
1420
1594
|
callback?: string;
|
|
1421
1595
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1446,11 +1620,11 @@ declare namespace gapi.client {
|
|
|
1446
1620
|
/** Creates a new network peering between the peer network and VMware Engine network provided in a `NetworkPeering` resource. NetworkPeering is a global resource and location can only be global. */
|
|
1447
1621
|
create(request: {
|
|
1448
1622
|
/** V1 error format. */
|
|
1449
|
-
'$.xgafv'?:
|
|
1623
|
+
'$.xgafv'?: '1' | '2';
|
|
1450
1624
|
/** OAuth access token. */
|
|
1451
1625
|
access_token?: string;
|
|
1452
1626
|
/** Data format for response. */
|
|
1453
|
-
alt?:
|
|
1627
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1454
1628
|
/** JSONP */
|
|
1455
1629
|
callback?: string;
|
|
1456
1630
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1473,17 +1647,19 @@ declare namespace gapi.client {
|
|
|
1473
1647
|
upload_protocol?: string;
|
|
1474
1648
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1475
1649
|
uploadType?: string;
|
|
1650
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the request. If set to `false`, validates and executes the request. */
|
|
1651
|
+
validateOnly?: boolean;
|
|
1476
1652
|
/** Request body */
|
|
1477
1653
|
resource: NetworkPeering;
|
|
1478
1654
|
}): Request<Operation>;
|
|
1479
1655
|
create(
|
|
1480
1656
|
request: {
|
|
1481
1657
|
/** V1 error format. */
|
|
1482
|
-
'$.xgafv'?:
|
|
1658
|
+
'$.xgafv'?: '1' | '2';
|
|
1483
1659
|
/** OAuth access token. */
|
|
1484
1660
|
access_token?: string;
|
|
1485
1661
|
/** Data format for response. */
|
|
1486
|
-
alt?:
|
|
1662
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1487
1663
|
/** JSONP */
|
|
1488
1664
|
callback?: string;
|
|
1489
1665
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1506,17 +1682,19 @@ declare namespace gapi.client {
|
|
|
1506
1682
|
upload_protocol?: string;
|
|
1507
1683
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1508
1684
|
uploadType?: string;
|
|
1685
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the request. If set to `false`, validates and executes the request. */
|
|
1686
|
+
validateOnly?: boolean;
|
|
1509
1687
|
},
|
|
1510
1688
|
body: NetworkPeering,
|
|
1511
1689
|
): Request<Operation>;
|
|
1512
1690
|
/** Deletes a `NetworkPeering` resource. When a network peering is deleted for a VMware Engine network, the peer network becomes inaccessible to that VMware Engine network. NetworkPeering is a global resource and location can only be global. */
|
|
1513
1691
|
delete(request?: {
|
|
1514
1692
|
/** V1 error format. */
|
|
1515
|
-
'$.xgafv'?:
|
|
1693
|
+
'$.xgafv'?: '1' | '2';
|
|
1516
1694
|
/** OAuth access token. */
|
|
1517
1695
|
access_token?: string;
|
|
1518
1696
|
/** Data format for response. */
|
|
1519
|
-
alt?:
|
|
1697
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1520
1698
|
/** JSONP */
|
|
1521
1699
|
callback?: string;
|
|
1522
1700
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1541,11 +1719,11 @@ declare namespace gapi.client {
|
|
|
1541
1719
|
/** Retrieves a `NetworkPeering` resource by its resource name. The resource contains details of the network peering, such as peered networks, import and export custom route configurations, and peering state. NetworkPeering is a global resource and location can only be global. */
|
|
1542
1720
|
get(request?: {
|
|
1543
1721
|
/** V1 error format. */
|
|
1544
|
-
'$.xgafv'?:
|
|
1722
|
+
'$.xgafv'?: '1' | '2';
|
|
1545
1723
|
/** OAuth access token. */
|
|
1546
1724
|
access_token?: string;
|
|
1547
1725
|
/** Data format for response. */
|
|
1548
|
-
alt?:
|
|
1726
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1549
1727
|
/** JSONP */
|
|
1550
1728
|
callback?: string;
|
|
1551
1729
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1568,11 +1746,11 @@ declare namespace gapi.client {
|
|
|
1568
1746
|
/** Lists `NetworkPeering` resources in a given project. NetworkPeering is a global resource and location can only be global. */
|
|
1569
1747
|
list(request?: {
|
|
1570
1748
|
/** V1 error format. */
|
|
1571
|
-
'$.xgafv'?:
|
|
1749
|
+
'$.xgafv'?: '1' | '2';
|
|
1572
1750
|
/** OAuth access token. */
|
|
1573
1751
|
access_token?: string;
|
|
1574
1752
|
/** Data format for response. */
|
|
1575
|
-
alt?:
|
|
1753
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1576
1754
|
/** JSONP */
|
|
1577
1755
|
callback?: string;
|
|
1578
1756
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1603,11 +1781,11 @@ declare namespace gapi.client {
|
|
|
1603
1781
|
/** Modifies a `NetworkPeering` resource. Only the `description` field can be updated. Only fields specified in `updateMask` are applied. NetworkPeering is a global resource and location can only be global. */
|
|
1604
1782
|
patch(request: {
|
|
1605
1783
|
/** V1 error format. */
|
|
1606
|
-
'$.xgafv'?:
|
|
1784
|
+
'$.xgafv'?: '1' | '2';
|
|
1607
1785
|
/** OAuth access token. */
|
|
1608
1786
|
access_token?: string;
|
|
1609
1787
|
/** Data format for response. */
|
|
1610
|
-
alt?:
|
|
1788
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1611
1789
|
/** JSONP */
|
|
1612
1790
|
callback?: string;
|
|
1613
1791
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1630,17 +1808,19 @@ declare namespace gapi.client {
|
|
|
1630
1808
|
upload_protocol?: string;
|
|
1631
1809
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1632
1810
|
uploadType?: string;
|
|
1811
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the request. If set to `false`, validates and executes the request. */
|
|
1812
|
+
validateOnly?: boolean;
|
|
1633
1813
|
/** Request body */
|
|
1634
1814
|
resource: NetworkPeering;
|
|
1635
1815
|
}): Request<Operation>;
|
|
1636
1816
|
patch(
|
|
1637
1817
|
request: {
|
|
1638
1818
|
/** V1 error format. */
|
|
1639
|
-
'$.xgafv'?:
|
|
1819
|
+
'$.xgafv'?: '1' | '2';
|
|
1640
1820
|
/** OAuth access token. */
|
|
1641
1821
|
access_token?: string;
|
|
1642
1822
|
/** Data format for response. */
|
|
1643
|
-
alt?:
|
|
1823
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1644
1824
|
/** JSONP */
|
|
1645
1825
|
callback?: string;
|
|
1646
1826
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1663,6 +1843,8 @@ declare namespace gapi.client {
|
|
|
1663
1843
|
upload_protocol?: string;
|
|
1664
1844
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1665
1845
|
uploadType?: string;
|
|
1846
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the request. If set to `false`, validates and executes the request. */
|
|
1847
|
+
validateOnly?: boolean;
|
|
1666
1848
|
},
|
|
1667
1849
|
body: NetworkPeering,
|
|
1668
1850
|
): Request<Operation>;
|
|
@@ -1672,11 +1854,11 @@ declare namespace gapi.client {
|
|
|
1672
1854
|
/** Creates a new external access rule in a given network policy. */
|
|
1673
1855
|
create(request: {
|
|
1674
1856
|
/** V1 error format. */
|
|
1675
|
-
'$.xgafv'?:
|
|
1857
|
+
'$.xgafv'?: '1' | '2';
|
|
1676
1858
|
/** OAuth access token. */
|
|
1677
1859
|
access_token?: string;
|
|
1678
1860
|
/** Data format for response. */
|
|
1679
|
-
alt?:
|
|
1861
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1680
1862
|
/** JSONP */
|
|
1681
1863
|
callback?: string;
|
|
1682
1864
|
/** Required. The user-provided identifier of the `ExternalAccessRule` to be created. This identifier must be unique among `ExternalAccessRule` resources within the parent and becomes the final token in the name URI. The identifier must meet the following requirements: * Only contains 1-63 alphanumeric characters and hyphens * Begins with an alphabetical character * Ends with a non-hyphen character * Not formatted as a UUID * Complies with [RFC 1034](https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5) */
|
|
@@ -1699,17 +1881,19 @@ declare namespace gapi.client {
|
|
|
1699
1881
|
upload_protocol?: string;
|
|
1700
1882
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1701
1883
|
uploadType?: string;
|
|
1884
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the request. If set to `false`, validates and executes the request. */
|
|
1885
|
+
validateOnly?: boolean;
|
|
1702
1886
|
/** Request body */
|
|
1703
1887
|
resource: ExternalAccessRule;
|
|
1704
1888
|
}): Request<Operation>;
|
|
1705
1889
|
create(
|
|
1706
1890
|
request: {
|
|
1707
1891
|
/** V1 error format. */
|
|
1708
|
-
'$.xgafv'?:
|
|
1892
|
+
'$.xgafv'?: '1' | '2';
|
|
1709
1893
|
/** OAuth access token. */
|
|
1710
1894
|
access_token?: string;
|
|
1711
1895
|
/** Data format for response. */
|
|
1712
|
-
alt?:
|
|
1896
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1713
1897
|
/** JSONP */
|
|
1714
1898
|
callback?: string;
|
|
1715
1899
|
/** Required. The user-provided identifier of the `ExternalAccessRule` to be created. This identifier must be unique among `ExternalAccessRule` resources within the parent and becomes the final token in the name URI. The identifier must meet the following requirements: * Only contains 1-63 alphanumeric characters and hyphens * Begins with an alphabetical character * Ends with a non-hyphen character * Not formatted as a UUID * Complies with [RFC 1034](https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5) */
|
|
@@ -1732,17 +1916,19 @@ declare namespace gapi.client {
|
|
|
1732
1916
|
upload_protocol?: string;
|
|
1733
1917
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1734
1918
|
uploadType?: string;
|
|
1919
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the request. If set to `false`, validates and executes the request. */
|
|
1920
|
+
validateOnly?: boolean;
|
|
1735
1921
|
},
|
|
1736
1922
|
body: ExternalAccessRule,
|
|
1737
1923
|
): Request<Operation>;
|
|
1738
1924
|
/** Deletes a single external access rule. */
|
|
1739
1925
|
delete(request?: {
|
|
1740
1926
|
/** V1 error format. */
|
|
1741
|
-
'$.xgafv'?:
|
|
1927
|
+
'$.xgafv'?: '1' | '2';
|
|
1742
1928
|
/** OAuth access token. */
|
|
1743
1929
|
access_token?: string;
|
|
1744
1930
|
/** Data format for response. */
|
|
1745
|
-
alt?:
|
|
1931
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1746
1932
|
/** JSONP */
|
|
1747
1933
|
callback?: string;
|
|
1748
1934
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1767,11 +1953,11 @@ declare namespace gapi.client {
|
|
|
1767
1953
|
/** Gets details of a single external access rule. */
|
|
1768
1954
|
get(request?: {
|
|
1769
1955
|
/** V1 error format. */
|
|
1770
|
-
'$.xgafv'?:
|
|
1956
|
+
'$.xgafv'?: '1' | '2';
|
|
1771
1957
|
/** OAuth access token. */
|
|
1772
1958
|
access_token?: string;
|
|
1773
1959
|
/** Data format for response. */
|
|
1774
|
-
alt?:
|
|
1960
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1775
1961
|
/** JSONP */
|
|
1776
1962
|
callback?: string;
|
|
1777
1963
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1794,11 +1980,11 @@ declare namespace gapi.client {
|
|
|
1794
1980
|
/** Lists `ExternalAccessRule` resources in the specified network policy. */
|
|
1795
1981
|
list(request?: {
|
|
1796
1982
|
/** V1 error format. */
|
|
1797
|
-
'$.xgafv'?:
|
|
1983
|
+
'$.xgafv'?: '1' | '2';
|
|
1798
1984
|
/** OAuth access token. */
|
|
1799
1985
|
access_token?: string;
|
|
1800
1986
|
/** Data format for response. */
|
|
1801
|
-
alt?:
|
|
1987
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1802
1988
|
/** JSONP */
|
|
1803
1989
|
callback?: string;
|
|
1804
1990
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1829,11 +2015,11 @@ declare namespace gapi.client {
|
|
|
1829
2015
|
/** Updates the parameters of a single external access rule. Only fields specified in `update_mask` are applied. */
|
|
1830
2016
|
patch(request: {
|
|
1831
2017
|
/** V1 error format. */
|
|
1832
|
-
'$.xgafv'?:
|
|
2018
|
+
'$.xgafv'?: '1' | '2';
|
|
1833
2019
|
/** OAuth access token. */
|
|
1834
2020
|
access_token?: string;
|
|
1835
2021
|
/** Data format for response. */
|
|
1836
|
-
alt?:
|
|
2022
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1837
2023
|
/** JSONP */
|
|
1838
2024
|
callback?: string;
|
|
1839
2025
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1856,17 +2042,19 @@ declare namespace gapi.client {
|
|
|
1856
2042
|
upload_protocol?: string;
|
|
1857
2043
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1858
2044
|
uploadType?: string;
|
|
2045
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the// request. If set to `false`, validates and executes the request. */
|
|
2046
|
+
validateOnly?: boolean;
|
|
1859
2047
|
/** Request body */
|
|
1860
2048
|
resource: ExternalAccessRule;
|
|
1861
2049
|
}): Request<Operation>;
|
|
1862
2050
|
patch(
|
|
1863
2051
|
request: {
|
|
1864
2052
|
/** V1 error format. */
|
|
1865
|
-
'$.xgafv'?:
|
|
2053
|
+
'$.xgafv'?: '1' | '2';
|
|
1866
2054
|
/** OAuth access token. */
|
|
1867
2055
|
access_token?: string;
|
|
1868
2056
|
/** Data format for response. */
|
|
1869
|
-
alt?:
|
|
2057
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1870
2058
|
/** JSONP */
|
|
1871
2059
|
callback?: string;
|
|
1872
2060
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1889,6 +2077,8 @@ declare namespace gapi.client {
|
|
|
1889
2077
|
upload_protocol?: string;
|
|
1890
2078
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1891
2079
|
uploadType?: string;
|
|
2080
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the// request. If set to `false`, validates and executes the request. */
|
|
2081
|
+
validateOnly?: boolean;
|
|
1892
2082
|
},
|
|
1893
2083
|
body: ExternalAccessRule,
|
|
1894
2084
|
): Request<Operation>;
|
|
@@ -1897,11 +2087,11 @@ declare namespace gapi.client {
|
|
|
1897
2087
|
/** Creates a new network policy in a given VMware Engine network of a project and location (region). A new network policy cannot be created if another network policy already exists in the same scope. */
|
|
1898
2088
|
create(request: {
|
|
1899
2089
|
/** V1 error format. */
|
|
1900
|
-
'$.xgafv'?:
|
|
2090
|
+
'$.xgafv'?: '1' | '2';
|
|
1901
2091
|
/** OAuth access token. */
|
|
1902
2092
|
access_token?: string;
|
|
1903
2093
|
/** Data format for response. */
|
|
1904
|
-
alt?:
|
|
2094
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1905
2095
|
/** JSONP */
|
|
1906
2096
|
callback?: string;
|
|
1907
2097
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1924,17 +2114,19 @@ declare namespace gapi.client {
|
|
|
1924
2114
|
upload_protocol?: string;
|
|
1925
2115
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1926
2116
|
uploadType?: string;
|
|
2117
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the request. If set to `false`, validates and executes the request. */
|
|
2118
|
+
validateOnly?: boolean;
|
|
1927
2119
|
/** Request body */
|
|
1928
2120
|
resource: NetworkPolicy;
|
|
1929
2121
|
}): Request<Operation>;
|
|
1930
2122
|
create(
|
|
1931
2123
|
request: {
|
|
1932
2124
|
/** V1 error format. */
|
|
1933
|
-
'$.xgafv'?:
|
|
2125
|
+
'$.xgafv'?: '1' | '2';
|
|
1934
2126
|
/** OAuth access token. */
|
|
1935
2127
|
access_token?: string;
|
|
1936
2128
|
/** Data format for response. */
|
|
1937
|
-
alt?:
|
|
2129
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1938
2130
|
/** JSONP */
|
|
1939
2131
|
callback?: string;
|
|
1940
2132
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1957,17 +2149,19 @@ declare namespace gapi.client {
|
|
|
1957
2149
|
upload_protocol?: string;
|
|
1958
2150
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1959
2151
|
uploadType?: string;
|
|
2152
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the request. If set to `false`, validates and executes the request. */
|
|
2153
|
+
validateOnly?: boolean;
|
|
1960
2154
|
},
|
|
1961
2155
|
body: NetworkPolicy,
|
|
1962
2156
|
): Request<Operation>;
|
|
1963
2157
|
/** Deletes a `NetworkPolicy` resource. A network policy cannot be deleted when `NetworkService.state` is set to `RECONCILING` for either its external IP or internet access service. */
|
|
1964
2158
|
delete(request?: {
|
|
1965
2159
|
/** V1 error format. */
|
|
1966
|
-
'$.xgafv'?:
|
|
2160
|
+
'$.xgafv'?: '1' | '2';
|
|
1967
2161
|
/** OAuth access token. */
|
|
1968
2162
|
access_token?: string;
|
|
1969
2163
|
/** Data format for response. */
|
|
1970
|
-
alt?:
|
|
2164
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1971
2165
|
/** JSONP */
|
|
1972
2166
|
callback?: string;
|
|
1973
2167
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1992,11 +2186,11 @@ declare namespace gapi.client {
|
|
|
1992
2186
|
/** Lists external IP addresses assigned to VMware workload VMs within the scope of the given network policy. */
|
|
1993
2187
|
fetchExternalAddresses(request?: {
|
|
1994
2188
|
/** V1 error format. */
|
|
1995
|
-
'$.xgafv'?:
|
|
2189
|
+
'$.xgafv'?: '1' | '2';
|
|
1996
2190
|
/** OAuth access token. */
|
|
1997
2191
|
access_token?: string;
|
|
1998
2192
|
/** Data format for response. */
|
|
1999
|
-
alt?:
|
|
2193
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2000
2194
|
/** JSONP */
|
|
2001
2195
|
callback?: string;
|
|
2002
2196
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2023,11 +2217,11 @@ declare namespace gapi.client {
|
|
|
2023
2217
|
/** Retrieves a `NetworkPolicy` resource by its resource name. */
|
|
2024
2218
|
get(request?: {
|
|
2025
2219
|
/** V1 error format. */
|
|
2026
|
-
'$.xgafv'?:
|
|
2220
|
+
'$.xgafv'?: '1' | '2';
|
|
2027
2221
|
/** OAuth access token. */
|
|
2028
2222
|
access_token?: string;
|
|
2029
2223
|
/** Data format for response. */
|
|
2030
|
-
alt?:
|
|
2224
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2031
2225
|
/** JSONP */
|
|
2032
2226
|
callback?: string;
|
|
2033
2227
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2050,11 +2244,11 @@ declare namespace gapi.client {
|
|
|
2050
2244
|
/** Lists `NetworkPolicy` resources in a specified project and location. */
|
|
2051
2245
|
list(request?: {
|
|
2052
2246
|
/** V1 error format. */
|
|
2053
|
-
'$.xgafv'?:
|
|
2247
|
+
'$.xgafv'?: '1' | '2';
|
|
2054
2248
|
/** OAuth access token. */
|
|
2055
2249
|
access_token?: string;
|
|
2056
2250
|
/** Data format for response. */
|
|
2057
|
-
alt?:
|
|
2251
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2058
2252
|
/** JSONP */
|
|
2059
2253
|
callback?: string;
|
|
2060
2254
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2085,11 +2279,11 @@ declare namespace gapi.client {
|
|
|
2085
2279
|
/** Modifies a `NetworkPolicy` resource. Only the following fields can be updated: `internet_access`, `external_ip`, `edge_services_cidr`. Only fields specified in `updateMask` are applied. When updating a network policy, the external IP network service can only be disabled if there are no external IP addresses present in the scope of the policy. Also, a `NetworkService` cannot be updated when `NetworkService.state` is set to `RECONCILING`. During operation processing, the resource is temporarily in the `ACTIVE` state before the operation fully completes. For that period of time, you can't update the resource. Use the operation status to determine when the processing fully completes. */
|
|
2086
2280
|
patch(request: {
|
|
2087
2281
|
/** V1 error format. */
|
|
2088
|
-
'$.xgafv'?:
|
|
2282
|
+
'$.xgafv'?: '1' | '2';
|
|
2089
2283
|
/** OAuth access token. */
|
|
2090
2284
|
access_token?: string;
|
|
2091
2285
|
/** Data format for response. */
|
|
2092
|
-
alt?:
|
|
2286
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2093
2287
|
/** JSONP */
|
|
2094
2288
|
callback?: string;
|
|
2095
2289
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2112,17 +2306,19 @@ declare namespace gapi.client {
|
|
|
2112
2306
|
upload_protocol?: string;
|
|
2113
2307
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2114
2308
|
uploadType?: string;
|
|
2309
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the request. If set to `false`, validates and executes the request. */
|
|
2310
|
+
validateOnly?: boolean;
|
|
2115
2311
|
/** Request body */
|
|
2116
2312
|
resource: NetworkPolicy;
|
|
2117
2313
|
}): Request<Operation>;
|
|
2118
2314
|
patch(
|
|
2119
2315
|
request: {
|
|
2120
2316
|
/** V1 error format. */
|
|
2121
|
-
'$.xgafv'?:
|
|
2317
|
+
'$.xgafv'?: '1' | '2';
|
|
2122
2318
|
/** OAuth access token. */
|
|
2123
2319
|
access_token?: string;
|
|
2124
2320
|
/** Data format for response. */
|
|
2125
|
-
alt?:
|
|
2321
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2126
2322
|
/** JSONP */
|
|
2127
2323
|
callback?: string;
|
|
2128
2324
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2145,6 +2341,8 @@ declare namespace gapi.client {
|
|
|
2145
2341
|
upload_protocol?: string;
|
|
2146
2342
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2147
2343
|
uploadType?: string;
|
|
2344
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the request. If set to `false`, validates and executes the request. */
|
|
2345
|
+
validateOnly?: boolean;
|
|
2148
2346
|
},
|
|
2149
2347
|
body: NetworkPolicy,
|
|
2150
2348
|
): Request<Operation>;
|
|
@@ -2154,11 +2352,11 @@ declare namespace gapi.client {
|
|
|
2154
2352
|
/** Gets details of a single `NodeType`. */
|
|
2155
2353
|
get(request?: {
|
|
2156
2354
|
/** V1 error format. */
|
|
2157
|
-
'$.xgafv'?:
|
|
2355
|
+
'$.xgafv'?: '1' | '2';
|
|
2158
2356
|
/** OAuth access token. */
|
|
2159
2357
|
access_token?: string;
|
|
2160
2358
|
/** Data format for response. */
|
|
2161
|
-
alt?:
|
|
2359
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2162
2360
|
/** JSONP */
|
|
2163
2361
|
callback?: string;
|
|
2164
2362
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2181,11 +2379,11 @@ declare namespace gapi.client {
|
|
|
2181
2379
|
/** Lists node types */
|
|
2182
2380
|
list(request?: {
|
|
2183
2381
|
/** V1 error format. */
|
|
2184
|
-
'$.xgafv'?:
|
|
2382
|
+
'$.xgafv'?: '1' | '2';
|
|
2185
2383
|
/** OAuth access token. */
|
|
2186
2384
|
access_token?: string;
|
|
2187
2385
|
/** Data format for response. */
|
|
2188
|
-
alt?:
|
|
2386
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2189
2387
|
/** JSONP */
|
|
2190
2388
|
callback?: string;
|
|
2191
2389
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2216,11 +2414,11 @@ declare namespace gapi.client {
|
|
|
2216
2414
|
/** Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. */
|
|
2217
2415
|
delete(request?: {
|
|
2218
2416
|
/** V1 error format. */
|
|
2219
|
-
'$.xgafv'?:
|
|
2417
|
+
'$.xgafv'?: '1' | '2';
|
|
2220
2418
|
/** OAuth access token. */
|
|
2221
2419
|
access_token?: string;
|
|
2222
2420
|
/** Data format for response. */
|
|
2223
|
-
alt?:
|
|
2421
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2224
2422
|
/** JSONP */
|
|
2225
2423
|
callback?: string;
|
|
2226
2424
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2243,11 +2441,11 @@ declare namespace gapi.client {
|
|
|
2243
2441
|
/** Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service. */
|
|
2244
2442
|
get(request?: {
|
|
2245
2443
|
/** V1 error format. */
|
|
2246
|
-
'$.xgafv'?:
|
|
2444
|
+
'$.xgafv'?: '1' | '2';
|
|
2247
2445
|
/** OAuth access token. */
|
|
2248
2446
|
access_token?: string;
|
|
2249
2447
|
/** Data format for response. */
|
|
2250
|
-
alt?:
|
|
2448
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2251
2449
|
/** JSONP */
|
|
2252
2450
|
callback?: string;
|
|
2253
2451
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2270,11 +2468,11 @@ declare namespace gapi.client {
|
|
|
2270
2468
|
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
2271
2469
|
list(request?: {
|
|
2272
2470
|
/** V1 error format. */
|
|
2273
|
-
'$.xgafv'?:
|
|
2471
|
+
'$.xgafv'?: '1' | '2';
|
|
2274
2472
|
/** OAuth access token. */
|
|
2275
2473
|
access_token?: string;
|
|
2276
2474
|
/** Data format for response. */
|
|
2277
|
-
alt?:
|
|
2475
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2278
2476
|
/** JSONP */
|
|
2279
2477
|
callback?: string;
|
|
2280
2478
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2307,11 +2505,11 @@ declare namespace gapi.client {
|
|
|
2307
2505
|
/** Gets details of a single node. */
|
|
2308
2506
|
get(request?: {
|
|
2309
2507
|
/** V1 error format. */
|
|
2310
|
-
'$.xgafv'?:
|
|
2508
|
+
'$.xgafv'?: '1' | '2';
|
|
2311
2509
|
/** OAuth access token. */
|
|
2312
2510
|
access_token?: string;
|
|
2313
2511
|
/** Data format for response. */
|
|
2314
|
-
alt?:
|
|
2512
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2315
2513
|
/** JSONP */
|
|
2316
2514
|
callback?: string;
|
|
2317
2515
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2334,11 +2532,11 @@ declare namespace gapi.client {
|
|
|
2334
2532
|
/** Lists nodes in a given cluster. */
|
|
2335
2533
|
list(request?: {
|
|
2336
2534
|
/** V1 error format. */
|
|
2337
|
-
'$.xgafv'?:
|
|
2535
|
+
'$.xgafv'?: '1' | '2';
|
|
2338
2536
|
/** OAuth access token. */
|
|
2339
2537
|
access_token?: string;
|
|
2340
2538
|
/** Data format for response. */
|
|
2341
|
-
alt?:
|
|
2539
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2342
2540
|
/** JSONP */
|
|
2343
2541
|
callback?: string;
|
|
2344
2542
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2367,11 +2565,11 @@ declare namespace gapi.client {
|
|
|
2367
2565
|
/** Creates a new cluster in a given private cloud. Creating a new cluster provides additional nodes for use in the parent private cloud and requires sufficient [node quota](https://cloud.google.com/vmware-engine/quotas). */
|
|
2368
2566
|
create(request: {
|
|
2369
2567
|
/** V1 error format. */
|
|
2370
|
-
'$.xgafv'?:
|
|
2568
|
+
'$.xgafv'?: '1' | '2';
|
|
2371
2569
|
/** OAuth access token. */
|
|
2372
2570
|
access_token?: string;
|
|
2373
2571
|
/** Data format for response. */
|
|
2374
|
-
alt?:
|
|
2572
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2375
2573
|
/** JSONP */
|
|
2376
2574
|
callback?: string;
|
|
2377
2575
|
/** Required. The user-provided identifier of the new `Cluster`. This identifier must be unique among clusters within the parent and becomes the final token in the name URI. The identifier must meet the following requirements: * Only contains 1-63 alphanumeric characters and hyphens * Begins with an alphabetical character * Ends with a non-hyphen character * Not formatted as a UUID * Complies with [RFC 1034](https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5) */
|
|
@@ -2394,7 +2592,7 @@ declare namespace gapi.client {
|
|
|
2394
2592
|
upload_protocol?: string;
|
|
2395
2593
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2396
2594
|
uploadType?: string;
|
|
2397
|
-
/** Optional.
|
|
2595
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the request. If set to `false`, validates and executes the request. */
|
|
2398
2596
|
validateOnly?: boolean;
|
|
2399
2597
|
/** Request body */
|
|
2400
2598
|
resource: Cluster;
|
|
@@ -2402,11 +2600,11 @@ declare namespace gapi.client {
|
|
|
2402
2600
|
create(
|
|
2403
2601
|
request: {
|
|
2404
2602
|
/** V1 error format. */
|
|
2405
|
-
'$.xgafv'?:
|
|
2603
|
+
'$.xgafv'?: '1' | '2';
|
|
2406
2604
|
/** OAuth access token. */
|
|
2407
2605
|
access_token?: string;
|
|
2408
2606
|
/** Data format for response. */
|
|
2409
|
-
alt?:
|
|
2607
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2410
2608
|
/** JSONP */
|
|
2411
2609
|
callback?: string;
|
|
2412
2610
|
/** Required. The user-provided identifier of the new `Cluster`. This identifier must be unique among clusters within the parent and becomes the final token in the name URI. The identifier must meet the following requirements: * Only contains 1-63 alphanumeric characters and hyphens * Begins with an alphabetical character * Ends with a non-hyphen character * Not formatted as a UUID * Complies with [RFC 1034](https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5) */
|
|
@@ -2429,7 +2627,7 @@ declare namespace gapi.client {
|
|
|
2429
2627
|
upload_protocol?: string;
|
|
2430
2628
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2431
2629
|
uploadType?: string;
|
|
2432
|
-
/** Optional.
|
|
2630
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the request. If set to `false`, validates and executes the request. */
|
|
2433
2631
|
validateOnly?: boolean;
|
|
2434
2632
|
},
|
|
2435
2633
|
body: Cluster,
|
|
@@ -2437,11 +2635,11 @@ declare namespace gapi.client {
|
|
|
2437
2635
|
/** Deletes a `Cluster` resource. To avoid unintended data loss, migrate or gracefully shut down any workloads running on the cluster before deletion. You cannot delete the management cluster of a private cloud using this method. */
|
|
2438
2636
|
delete(request?: {
|
|
2439
2637
|
/** V1 error format. */
|
|
2440
|
-
'$.xgafv'?:
|
|
2638
|
+
'$.xgafv'?: '1' | '2';
|
|
2441
2639
|
/** OAuth access token. */
|
|
2442
2640
|
access_token?: string;
|
|
2443
2641
|
/** Data format for response. */
|
|
2444
|
-
alt?:
|
|
2642
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2445
2643
|
/** JSONP */
|
|
2446
2644
|
callback?: string;
|
|
2447
2645
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2466,11 +2664,11 @@ declare namespace gapi.client {
|
|
|
2466
2664
|
/** Retrieves a `Cluster` resource by its resource name. */
|
|
2467
2665
|
get(request?: {
|
|
2468
2666
|
/** V1 error format. */
|
|
2469
|
-
'$.xgafv'?:
|
|
2667
|
+
'$.xgafv'?: '1' | '2';
|
|
2470
2668
|
/** OAuth access token. */
|
|
2471
2669
|
access_token?: string;
|
|
2472
2670
|
/** Data format for response. */
|
|
2473
|
-
alt?:
|
|
2671
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2474
2672
|
/** JSONP */
|
|
2475
2673
|
callback?: string;
|
|
2476
2674
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2493,11 +2691,11 @@ declare namespace gapi.client {
|
|
|
2493
2691
|
/** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
|
|
2494
2692
|
getIamPolicy(request?: {
|
|
2495
2693
|
/** V1 error format. */
|
|
2496
|
-
'$.xgafv'?:
|
|
2694
|
+
'$.xgafv'?: '1' | '2';
|
|
2497
2695
|
/** OAuth access token. */
|
|
2498
2696
|
access_token?: string;
|
|
2499
2697
|
/** Data format for response. */
|
|
2500
|
-
alt?:
|
|
2698
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2501
2699
|
/** JSONP */
|
|
2502
2700
|
callback?: string;
|
|
2503
2701
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2522,11 +2720,11 @@ declare namespace gapi.client {
|
|
|
2522
2720
|
/** Lists `Cluster` resources in a given private cloud. */
|
|
2523
2721
|
list(request?: {
|
|
2524
2722
|
/** V1 error format. */
|
|
2525
|
-
'$.xgafv'?:
|
|
2723
|
+
'$.xgafv'?: '1' | '2';
|
|
2526
2724
|
/** OAuth access token. */
|
|
2527
2725
|
access_token?: string;
|
|
2528
2726
|
/** Data format for response. */
|
|
2529
|
-
alt?:
|
|
2727
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2530
2728
|
/** JSONP */
|
|
2531
2729
|
callback?: string;
|
|
2532
2730
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2557,11 +2755,11 @@ declare namespace gapi.client {
|
|
|
2557
2755
|
/** Mounts a `Datastore` on a cluster resource */
|
|
2558
2756
|
mountDatastore(request: {
|
|
2559
2757
|
/** V1 error format. */
|
|
2560
|
-
'$.xgafv'?:
|
|
2758
|
+
'$.xgafv'?: '1' | '2';
|
|
2561
2759
|
/** OAuth access token. */
|
|
2562
2760
|
access_token?: string;
|
|
2563
2761
|
/** Data format for response. */
|
|
2564
|
-
alt?:
|
|
2762
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2565
2763
|
/** JSONP */
|
|
2566
2764
|
callback?: string;
|
|
2567
2765
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2586,11 +2784,11 @@ declare namespace gapi.client {
|
|
|
2586
2784
|
mountDatastore(
|
|
2587
2785
|
request: {
|
|
2588
2786
|
/** V1 error format. */
|
|
2589
|
-
'$.xgafv'?:
|
|
2787
|
+
'$.xgafv'?: '1' | '2';
|
|
2590
2788
|
/** OAuth access token. */
|
|
2591
2789
|
access_token?: string;
|
|
2592
2790
|
/** Data format for response. */
|
|
2593
|
-
alt?:
|
|
2791
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2594
2792
|
/** JSONP */
|
|
2595
2793
|
callback?: string;
|
|
2596
2794
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2615,11 +2813,11 @@ declare namespace gapi.client {
|
|
|
2615
2813
|
/** Modifies a `Cluster` resource. Only fields specified in `updateMask` are applied. During operation processing, the resource is temporarily in the `ACTIVE` state before the operation fully completes. For that period of time, you can't update the resource. Use the operation status to determine when the processing fully completes. */
|
|
2616
2814
|
patch(request: {
|
|
2617
2815
|
/** V1 error format. */
|
|
2618
|
-
'$.xgafv'?:
|
|
2816
|
+
'$.xgafv'?: '1' | '2';
|
|
2619
2817
|
/** OAuth access token. */
|
|
2620
2818
|
access_token?: string;
|
|
2621
2819
|
/** Data format for response. */
|
|
2622
|
-
alt?:
|
|
2820
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2623
2821
|
/** JSONP */
|
|
2624
2822
|
callback?: string;
|
|
2625
2823
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2642,7 +2840,7 @@ declare namespace gapi.client {
|
|
|
2642
2840
|
upload_protocol?: string;
|
|
2643
2841
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2644
2842
|
uploadType?: string;
|
|
2645
|
-
/** Optional.
|
|
2843
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the request. If set to `false`, validates and executes the request. */
|
|
2646
2844
|
validateOnly?: boolean;
|
|
2647
2845
|
/** Request body */
|
|
2648
2846
|
resource: Cluster;
|
|
@@ -2650,11 +2848,11 @@ declare namespace gapi.client {
|
|
|
2650
2848
|
patch(
|
|
2651
2849
|
request: {
|
|
2652
2850
|
/** V1 error format. */
|
|
2653
|
-
'$.xgafv'?:
|
|
2851
|
+
'$.xgafv'?: '1' | '2';
|
|
2654
2852
|
/** OAuth access token. */
|
|
2655
2853
|
access_token?: string;
|
|
2656
2854
|
/** Data format for response. */
|
|
2657
|
-
alt?:
|
|
2855
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2658
2856
|
/** JSONP */
|
|
2659
2857
|
callback?: string;
|
|
2660
2858
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2677,7 +2875,7 @@ declare namespace gapi.client {
|
|
|
2677
2875
|
upload_protocol?: string;
|
|
2678
2876
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2679
2877
|
uploadType?: string;
|
|
2680
|
-
/** Optional.
|
|
2878
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the request. If set to `false`, validates and executes the request. */
|
|
2681
2879
|
validateOnly?: boolean;
|
|
2682
2880
|
},
|
|
2683
2881
|
body: Cluster,
|
|
@@ -2686,11 +2884,11 @@ declare namespace gapi.client {
|
|
|
2686
2884
|
setIamPolicy(
|
|
2687
2885
|
request: {
|
|
2688
2886
|
/** V1 error format. */
|
|
2689
|
-
'$.xgafv'?:
|
|
2887
|
+
'$.xgafv'?: '1' | '2';
|
|
2690
2888
|
/** OAuth access token. */
|
|
2691
2889
|
access_token?: string;
|
|
2692
2890
|
/** Data format for response. */
|
|
2693
|
-
alt?:
|
|
2891
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2694
2892
|
/** JSONP */
|
|
2695
2893
|
callback?: string;
|
|
2696
2894
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2716,11 +2914,11 @@ declare namespace gapi.client {
|
|
|
2716
2914
|
testIamPermissions(
|
|
2717
2915
|
request: {
|
|
2718
2916
|
/** V1 error format. */
|
|
2719
|
-
'$.xgafv'?:
|
|
2917
|
+
'$.xgafv'?: '1' | '2';
|
|
2720
2918
|
/** OAuth access token. */
|
|
2721
2919
|
access_token?: string;
|
|
2722
2920
|
/** Data format for response. */
|
|
2723
|
-
alt?:
|
|
2921
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2724
2922
|
/** JSONP */
|
|
2725
2923
|
callback?: string;
|
|
2726
2924
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2745,11 +2943,11 @@ declare namespace gapi.client {
|
|
|
2745
2943
|
/** Unmounts a `Datastore` on a cluster resource */
|
|
2746
2944
|
unmountDatastore(request: {
|
|
2747
2945
|
/** V1 error format. */
|
|
2748
|
-
'$.xgafv'?:
|
|
2946
|
+
'$.xgafv'?: '1' | '2';
|
|
2749
2947
|
/** OAuth access token. */
|
|
2750
2948
|
access_token?: string;
|
|
2751
2949
|
/** Data format for response. */
|
|
2752
|
-
alt?:
|
|
2950
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2753
2951
|
/** JSONP */
|
|
2754
2952
|
callback?: string;
|
|
2755
2953
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2774,11 +2972,11 @@ declare namespace gapi.client {
|
|
|
2774
2972
|
unmountDatastore(
|
|
2775
2973
|
request: {
|
|
2776
2974
|
/** V1 error format. */
|
|
2777
|
-
'$.xgafv'?:
|
|
2975
|
+
'$.xgafv'?: '1' | '2';
|
|
2778
2976
|
/** OAuth access token. */
|
|
2779
2977
|
access_token?: string;
|
|
2780
2978
|
/** Data format for response. */
|
|
2781
|
-
alt?:
|
|
2979
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2782
2980
|
/** JSONP */
|
|
2783
2981
|
callback?: string;
|
|
2784
2982
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2806,11 +3004,11 @@ declare namespace gapi.client {
|
|
|
2806
3004
|
/** Creates a new `ExternalAddress` resource in a given private cloud. The network policy that corresponds to the private cloud must have the external IP address network service enabled (`NetworkPolicy.external_ip`). */
|
|
2807
3005
|
create(request: {
|
|
2808
3006
|
/** V1 error format. */
|
|
2809
|
-
'$.xgafv'?:
|
|
3007
|
+
'$.xgafv'?: '1' | '2';
|
|
2810
3008
|
/** OAuth access token. */
|
|
2811
3009
|
access_token?: string;
|
|
2812
3010
|
/** Data format for response. */
|
|
2813
|
-
alt?:
|
|
3011
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2814
3012
|
/** JSONP */
|
|
2815
3013
|
callback?: string;
|
|
2816
3014
|
/** Required. The user-provided identifier of the `ExternalAddress` to be created. This identifier must be unique among `ExternalAddress` resources within the parent and becomes the final token in the name URI. The identifier must meet the following requirements: * Only contains 1-63 alphanumeric characters and hyphens * Begins with an alphabetical character * Ends with a non-hyphen character * Not formatted as a UUID * Complies with [RFC 1034](https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5) */
|
|
@@ -2833,17 +3031,19 @@ declare namespace gapi.client {
|
|
|
2833
3031
|
upload_protocol?: string;
|
|
2834
3032
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2835
3033
|
uploadType?: string;
|
|
3034
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the request. If set to `false`, validates and executes the request. */
|
|
3035
|
+
validateOnly?: boolean;
|
|
2836
3036
|
/** Request body */
|
|
2837
3037
|
resource: ExternalAddress;
|
|
2838
3038
|
}): Request<Operation>;
|
|
2839
3039
|
create(
|
|
2840
3040
|
request: {
|
|
2841
3041
|
/** V1 error format. */
|
|
2842
|
-
'$.xgafv'?:
|
|
3042
|
+
'$.xgafv'?: '1' | '2';
|
|
2843
3043
|
/** OAuth access token. */
|
|
2844
3044
|
access_token?: string;
|
|
2845
3045
|
/** Data format for response. */
|
|
2846
|
-
alt?:
|
|
3046
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2847
3047
|
/** JSONP */
|
|
2848
3048
|
callback?: string;
|
|
2849
3049
|
/** Required. The user-provided identifier of the `ExternalAddress` to be created. This identifier must be unique among `ExternalAddress` resources within the parent and becomes the final token in the name URI. The identifier must meet the following requirements: * Only contains 1-63 alphanumeric characters and hyphens * Begins with an alphabetical character * Ends with a non-hyphen character * Not formatted as a UUID * Complies with [RFC 1034](https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5) */
|
|
@@ -2866,17 +3066,19 @@ declare namespace gapi.client {
|
|
|
2866
3066
|
upload_protocol?: string;
|
|
2867
3067
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2868
3068
|
uploadType?: string;
|
|
3069
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the request. If set to `false`, validates and executes the request. */
|
|
3070
|
+
validateOnly?: boolean;
|
|
2869
3071
|
},
|
|
2870
3072
|
body: ExternalAddress,
|
|
2871
3073
|
): Request<Operation>;
|
|
2872
3074
|
/** Deletes a single external IP address. When you delete an external IP address, connectivity between the external IP address and the corresponding internal IP address is lost. */
|
|
2873
3075
|
delete(request?: {
|
|
2874
3076
|
/** V1 error format. */
|
|
2875
|
-
'$.xgafv'?:
|
|
3077
|
+
'$.xgafv'?: '1' | '2';
|
|
2876
3078
|
/** OAuth access token. */
|
|
2877
3079
|
access_token?: string;
|
|
2878
3080
|
/** Data format for response. */
|
|
2879
|
-
alt?:
|
|
3081
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2880
3082
|
/** JSONP */
|
|
2881
3083
|
callback?: string;
|
|
2882
3084
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2901,11 +3103,11 @@ declare namespace gapi.client {
|
|
|
2901
3103
|
/** Gets details of a single external IP address. */
|
|
2902
3104
|
get(request?: {
|
|
2903
3105
|
/** V1 error format. */
|
|
2904
|
-
'$.xgafv'?:
|
|
3106
|
+
'$.xgafv'?: '1' | '2';
|
|
2905
3107
|
/** OAuth access token. */
|
|
2906
3108
|
access_token?: string;
|
|
2907
3109
|
/** Data format for response. */
|
|
2908
|
-
alt?:
|
|
3110
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2909
3111
|
/** JSONP */
|
|
2910
3112
|
callback?: string;
|
|
2911
3113
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2928,11 +3130,11 @@ declare namespace gapi.client {
|
|
|
2928
3130
|
/** Lists external IP addresses assigned to VMware workload VMs in a given private cloud. */
|
|
2929
3131
|
list(request?: {
|
|
2930
3132
|
/** V1 error format. */
|
|
2931
|
-
'$.xgafv'?:
|
|
3133
|
+
'$.xgafv'?: '1' | '2';
|
|
2932
3134
|
/** OAuth access token. */
|
|
2933
3135
|
access_token?: string;
|
|
2934
3136
|
/** Data format for response. */
|
|
2935
|
-
alt?:
|
|
3137
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2936
3138
|
/** JSONP */
|
|
2937
3139
|
callback?: string;
|
|
2938
3140
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2963,11 +3165,11 @@ declare namespace gapi.client {
|
|
|
2963
3165
|
/** Updates the parameters of a single external IP address. Only fields specified in `update_mask` are applied. During operation processing, the resource is temporarily in the `ACTIVE` state before the operation fully completes. For that period of time, you can't update the resource. Use the operation status to determine when the processing fully completes. */
|
|
2964
3166
|
patch(request: {
|
|
2965
3167
|
/** V1 error format. */
|
|
2966
|
-
'$.xgafv'?:
|
|
3168
|
+
'$.xgafv'?: '1' | '2';
|
|
2967
3169
|
/** OAuth access token. */
|
|
2968
3170
|
access_token?: string;
|
|
2969
3171
|
/** Data format for response. */
|
|
2970
|
-
alt?:
|
|
3172
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2971
3173
|
/** JSONP */
|
|
2972
3174
|
callback?: string;
|
|
2973
3175
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2990,17 +3192,19 @@ declare namespace gapi.client {
|
|
|
2990
3192
|
upload_protocol?: string;
|
|
2991
3193
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2992
3194
|
uploadType?: string;
|
|
3195
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the request. If set to `false`, validates and executes the request. */
|
|
3196
|
+
validateOnly?: boolean;
|
|
2993
3197
|
/** Request body */
|
|
2994
3198
|
resource: ExternalAddress;
|
|
2995
3199
|
}): Request<Operation>;
|
|
2996
3200
|
patch(
|
|
2997
3201
|
request: {
|
|
2998
3202
|
/** V1 error format. */
|
|
2999
|
-
'$.xgafv'?:
|
|
3203
|
+
'$.xgafv'?: '1' | '2';
|
|
3000
3204
|
/** OAuth access token. */
|
|
3001
3205
|
access_token?: string;
|
|
3002
3206
|
/** Data format for response. */
|
|
3003
|
-
alt?:
|
|
3207
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3004
3208
|
/** JSONP */
|
|
3005
3209
|
callback?: string;
|
|
3006
3210
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3023,6 +3227,8 @@ declare namespace gapi.client {
|
|
|
3023
3227
|
upload_protocol?: string;
|
|
3024
3228
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3025
3229
|
uploadType?: string;
|
|
3230
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the request. If set to `false`, validates and executes the request. */
|
|
3231
|
+
validateOnly?: boolean;
|
|
3026
3232
|
},
|
|
3027
3233
|
body: ExternalAddress,
|
|
3028
3234
|
): Request<Operation>;
|
|
@@ -3031,11 +3237,11 @@ declare namespace gapi.client {
|
|
|
3031
3237
|
/** Creates a new HCX activation key in a given private cloud. */
|
|
3032
3238
|
create(request: {
|
|
3033
3239
|
/** V1 error format. */
|
|
3034
|
-
'$.xgafv'?:
|
|
3240
|
+
'$.xgafv'?: '1' | '2';
|
|
3035
3241
|
/** OAuth access token. */
|
|
3036
3242
|
access_token?: string;
|
|
3037
3243
|
/** Data format for response. */
|
|
3038
|
-
alt?:
|
|
3244
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3039
3245
|
/** JSONP */
|
|
3040
3246
|
callback?: string;
|
|
3041
3247
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3064,11 +3270,11 @@ declare namespace gapi.client {
|
|
|
3064
3270
|
create(
|
|
3065
3271
|
request: {
|
|
3066
3272
|
/** V1 error format. */
|
|
3067
|
-
'$.xgafv'?:
|
|
3273
|
+
'$.xgafv'?: '1' | '2';
|
|
3068
3274
|
/** OAuth access token. */
|
|
3069
3275
|
access_token?: string;
|
|
3070
3276
|
/** Data format for response. */
|
|
3071
|
-
alt?:
|
|
3277
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3072
3278
|
/** JSONP */
|
|
3073
3279
|
callback?: string;
|
|
3074
3280
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3097,11 +3303,11 @@ declare namespace gapi.client {
|
|
|
3097
3303
|
/** Retrieves a `HcxActivationKey` resource by its resource name. */
|
|
3098
3304
|
get(request?: {
|
|
3099
3305
|
/** V1 error format. */
|
|
3100
|
-
'$.xgafv'?:
|
|
3306
|
+
'$.xgafv'?: '1' | '2';
|
|
3101
3307
|
/** OAuth access token. */
|
|
3102
3308
|
access_token?: string;
|
|
3103
3309
|
/** Data format for response. */
|
|
3104
|
-
alt?:
|
|
3310
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3105
3311
|
/** JSONP */
|
|
3106
3312
|
callback?: string;
|
|
3107
3313
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3124,11 +3330,11 @@ declare namespace gapi.client {
|
|
|
3124
3330
|
/** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
|
|
3125
3331
|
getIamPolicy(request?: {
|
|
3126
3332
|
/** V1 error format. */
|
|
3127
|
-
'$.xgafv'?:
|
|
3333
|
+
'$.xgafv'?: '1' | '2';
|
|
3128
3334
|
/** OAuth access token. */
|
|
3129
3335
|
access_token?: string;
|
|
3130
3336
|
/** Data format for response. */
|
|
3131
|
-
alt?:
|
|
3337
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3132
3338
|
/** JSONP */
|
|
3133
3339
|
callback?: string;
|
|
3134
3340
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3153,11 +3359,11 @@ declare namespace gapi.client {
|
|
|
3153
3359
|
/** Lists `HcxActivationKey` resources in a given private cloud. */
|
|
3154
3360
|
list(request?: {
|
|
3155
3361
|
/** V1 error format. */
|
|
3156
|
-
'$.xgafv'?:
|
|
3362
|
+
'$.xgafv'?: '1' | '2';
|
|
3157
3363
|
/** OAuth access token. */
|
|
3158
3364
|
access_token?: string;
|
|
3159
3365
|
/** Data format for response. */
|
|
3160
|
-
alt?:
|
|
3366
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3161
3367
|
/** JSONP */
|
|
3162
3368
|
callback?: string;
|
|
3163
3369
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3185,11 +3391,11 @@ declare namespace gapi.client {
|
|
|
3185
3391
|
setIamPolicy(
|
|
3186
3392
|
request: {
|
|
3187
3393
|
/** V1 error format. */
|
|
3188
|
-
'$.xgafv'?:
|
|
3394
|
+
'$.xgafv'?: '1' | '2';
|
|
3189
3395
|
/** OAuth access token. */
|
|
3190
3396
|
access_token?: string;
|
|
3191
3397
|
/** Data format for response. */
|
|
3192
|
-
alt?:
|
|
3398
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3193
3399
|
/** JSONP */
|
|
3194
3400
|
callback?: string;
|
|
3195
3401
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3215,11 +3421,11 @@ declare namespace gapi.client {
|
|
|
3215
3421
|
testIamPermissions(
|
|
3216
3422
|
request: {
|
|
3217
3423
|
/** V1 error format. */
|
|
3218
|
-
'$.xgafv'?:
|
|
3424
|
+
'$.xgafv'?: '1' | '2';
|
|
3219
3425
|
/** OAuth access token. */
|
|
3220
3426
|
access_token?: string;
|
|
3221
3427
|
/** Data format for response. */
|
|
3222
|
-
alt?:
|
|
3428
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3223
3429
|
/** JSONP */
|
|
3224
3430
|
callback?: string;
|
|
3225
3431
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3246,11 +3452,11 @@ declare namespace gapi.client {
|
|
|
3246
3452
|
/** Create a new logging server for a given private cloud. */
|
|
3247
3453
|
create(request: {
|
|
3248
3454
|
/** V1 error format. */
|
|
3249
|
-
'$.xgafv'?:
|
|
3455
|
+
'$.xgafv'?: '1' | '2';
|
|
3250
3456
|
/** OAuth access token. */
|
|
3251
3457
|
access_token?: string;
|
|
3252
3458
|
/** Data format for response. */
|
|
3253
|
-
alt?:
|
|
3459
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3254
3460
|
/** JSONP */
|
|
3255
3461
|
callback?: string;
|
|
3256
3462
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3279,11 +3485,11 @@ declare namespace gapi.client {
|
|
|
3279
3485
|
create(
|
|
3280
3486
|
request: {
|
|
3281
3487
|
/** V1 error format. */
|
|
3282
|
-
'$.xgafv'?:
|
|
3488
|
+
'$.xgafv'?: '1' | '2';
|
|
3283
3489
|
/** OAuth access token. */
|
|
3284
3490
|
access_token?: string;
|
|
3285
3491
|
/** Data format for response. */
|
|
3286
|
-
alt?:
|
|
3492
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3287
3493
|
/** JSONP */
|
|
3288
3494
|
callback?: string;
|
|
3289
3495
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3312,11 +3518,11 @@ declare namespace gapi.client {
|
|
|
3312
3518
|
/** Deletes a single logging server. */
|
|
3313
3519
|
delete(request?: {
|
|
3314
3520
|
/** V1 error format. */
|
|
3315
|
-
'$.xgafv'?:
|
|
3521
|
+
'$.xgafv'?: '1' | '2';
|
|
3316
3522
|
/** OAuth access token. */
|
|
3317
3523
|
access_token?: string;
|
|
3318
3524
|
/** Data format for response. */
|
|
3319
|
-
alt?:
|
|
3525
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3320
3526
|
/** JSONP */
|
|
3321
3527
|
callback?: string;
|
|
3322
3528
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3341,11 +3547,11 @@ declare namespace gapi.client {
|
|
|
3341
3547
|
/** Gets details of a logging server. */
|
|
3342
3548
|
get(request?: {
|
|
3343
3549
|
/** V1 error format. */
|
|
3344
|
-
'$.xgafv'?:
|
|
3550
|
+
'$.xgafv'?: '1' | '2';
|
|
3345
3551
|
/** OAuth access token. */
|
|
3346
3552
|
access_token?: string;
|
|
3347
3553
|
/** Data format for response. */
|
|
3348
|
-
alt?:
|
|
3554
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3349
3555
|
/** JSONP */
|
|
3350
3556
|
callback?: string;
|
|
3351
3557
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3368,11 +3574,11 @@ declare namespace gapi.client {
|
|
|
3368
3574
|
/** Lists logging servers configured for a given private cloud. */
|
|
3369
3575
|
list(request?: {
|
|
3370
3576
|
/** V1 error format. */
|
|
3371
|
-
'$.xgafv'?:
|
|
3577
|
+
'$.xgafv'?: '1' | '2';
|
|
3372
3578
|
/** OAuth access token. */
|
|
3373
3579
|
access_token?: string;
|
|
3374
3580
|
/** Data format for response. */
|
|
3375
|
-
alt?:
|
|
3581
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3376
3582
|
/** JSONP */
|
|
3377
3583
|
callback?: string;
|
|
3378
3584
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3403,11 +3609,11 @@ declare namespace gapi.client {
|
|
|
3403
3609
|
/** Updates the parameters of a single logging server. Only fields specified in `update_mask` are applied. */
|
|
3404
3610
|
patch(request: {
|
|
3405
3611
|
/** V1 error format. */
|
|
3406
|
-
'$.xgafv'?:
|
|
3612
|
+
'$.xgafv'?: '1' | '2';
|
|
3407
3613
|
/** OAuth access token. */
|
|
3408
3614
|
access_token?: string;
|
|
3409
3615
|
/** Data format for response. */
|
|
3410
|
-
alt?:
|
|
3616
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3411
3617
|
/** JSONP */
|
|
3412
3618
|
callback?: string;
|
|
3413
3619
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3436,11 +3642,11 @@ declare namespace gapi.client {
|
|
|
3436
3642
|
patch(
|
|
3437
3643
|
request: {
|
|
3438
3644
|
/** V1 error format. */
|
|
3439
|
-
'$.xgafv'?:
|
|
3645
|
+
'$.xgafv'?: '1' | '2';
|
|
3440
3646
|
/** OAuth access token. */
|
|
3441
3647
|
access_token?: string;
|
|
3442
3648
|
/** Data format for response. */
|
|
3443
|
-
alt?:
|
|
3649
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3444
3650
|
/** JSONP */
|
|
3445
3651
|
callback?: string;
|
|
3446
3652
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3471,11 +3677,11 @@ declare namespace gapi.client {
|
|
|
3471
3677
|
/** Creates a new `ManagementDnsZoneBinding` resource in a private cloud. This RPC creates the DNS binding and the resource that represents the DNS binding of the consumer VPC network to the management DNS zone. A management DNS zone is the Cloud DNS cross-project binding zone that VMware Engine creates for each private cloud. It contains FQDNs and corresponding IP addresses for the private cloud's ESXi hosts and management VM appliances like vCenter and NSX Manager. */
|
|
3472
3678
|
create(request: {
|
|
3473
3679
|
/** V1 error format. */
|
|
3474
|
-
'$.xgafv'?:
|
|
3680
|
+
'$.xgafv'?: '1' | '2';
|
|
3475
3681
|
/** OAuth access token. */
|
|
3476
3682
|
access_token?: string;
|
|
3477
3683
|
/** Data format for response. */
|
|
3478
|
-
alt?:
|
|
3684
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3479
3685
|
/** JSONP */
|
|
3480
3686
|
callback?: string;
|
|
3481
3687
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3504,11 +3710,11 @@ declare namespace gapi.client {
|
|
|
3504
3710
|
create(
|
|
3505
3711
|
request: {
|
|
3506
3712
|
/** V1 error format. */
|
|
3507
|
-
'$.xgafv'?:
|
|
3713
|
+
'$.xgafv'?: '1' | '2';
|
|
3508
3714
|
/** OAuth access token. */
|
|
3509
3715
|
access_token?: string;
|
|
3510
3716
|
/** Data format for response. */
|
|
3511
|
-
alt?:
|
|
3717
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3512
3718
|
/** JSONP */
|
|
3513
3719
|
callback?: string;
|
|
3514
3720
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3537,11 +3743,11 @@ declare namespace gapi.client {
|
|
|
3537
3743
|
/** Deletes a `ManagementDnsZoneBinding` resource. When a management DNS zone binding is deleted, the corresponding consumer VPC network is no longer bound to the management DNS zone. */
|
|
3538
3744
|
delete(request?: {
|
|
3539
3745
|
/** V1 error format. */
|
|
3540
|
-
'$.xgafv'?:
|
|
3746
|
+
'$.xgafv'?: '1' | '2';
|
|
3541
3747
|
/** OAuth access token. */
|
|
3542
3748
|
access_token?: string;
|
|
3543
3749
|
/** Data format for response. */
|
|
3544
|
-
alt?:
|
|
3750
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3545
3751
|
/** JSONP */
|
|
3546
3752
|
callback?: string;
|
|
3547
3753
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3566,11 +3772,11 @@ declare namespace gapi.client {
|
|
|
3566
3772
|
/** Retrieves a 'ManagementDnsZoneBinding' resource by its resource name. */
|
|
3567
3773
|
get(request?: {
|
|
3568
3774
|
/** V1 error format. */
|
|
3569
|
-
'$.xgafv'?:
|
|
3775
|
+
'$.xgafv'?: '1' | '2';
|
|
3570
3776
|
/** OAuth access token. */
|
|
3571
3777
|
access_token?: string;
|
|
3572
3778
|
/** Data format for response. */
|
|
3573
|
-
alt?:
|
|
3779
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3574
3780
|
/** JSONP */
|
|
3575
3781
|
callback?: string;
|
|
3576
3782
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3593,11 +3799,11 @@ declare namespace gapi.client {
|
|
|
3593
3799
|
/** Lists Consumer VPCs bound to Management DNS Zone of a given private cloud. */
|
|
3594
3800
|
list(request?: {
|
|
3595
3801
|
/** V1 error format. */
|
|
3596
|
-
'$.xgafv'?:
|
|
3802
|
+
'$.xgafv'?: '1' | '2';
|
|
3597
3803
|
/** OAuth access token. */
|
|
3598
3804
|
access_token?: string;
|
|
3599
3805
|
/** Data format for response. */
|
|
3600
|
-
alt?:
|
|
3806
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3601
3807
|
/** JSONP */
|
|
3602
3808
|
callback?: string;
|
|
3603
3809
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3628,11 +3834,11 @@ declare namespace gapi.client {
|
|
|
3628
3834
|
/** Updates a `ManagementDnsZoneBinding` resource. Only fields specified in `update_mask` are applied. */
|
|
3629
3835
|
patch(request: {
|
|
3630
3836
|
/** V1 error format. */
|
|
3631
|
-
'$.xgafv'?:
|
|
3837
|
+
'$.xgafv'?: '1' | '2';
|
|
3632
3838
|
/** OAuth access token. */
|
|
3633
3839
|
access_token?: string;
|
|
3634
3840
|
/** Data format for response. */
|
|
3635
|
-
alt?:
|
|
3841
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3636
3842
|
/** JSONP */
|
|
3637
3843
|
callback?: string;
|
|
3638
3844
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3661,11 +3867,11 @@ declare namespace gapi.client {
|
|
|
3661
3867
|
patch(
|
|
3662
3868
|
request: {
|
|
3663
3869
|
/** V1 error format. */
|
|
3664
|
-
'$.xgafv'?:
|
|
3870
|
+
'$.xgafv'?: '1' | '2';
|
|
3665
3871
|
/** OAuth access token. */
|
|
3666
3872
|
access_token?: string;
|
|
3667
3873
|
/** Data format for response. */
|
|
3668
|
-
alt?:
|
|
3874
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3669
3875
|
/** JSONP */
|
|
3670
3876
|
callback?: string;
|
|
3671
3877
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3694,11 +3900,11 @@ declare namespace gapi.client {
|
|
|
3694
3900
|
/** Retries to create a `ManagementDnsZoneBinding` resource that is in failed state. */
|
|
3695
3901
|
repair(request: {
|
|
3696
3902
|
/** V1 error format. */
|
|
3697
|
-
'$.xgafv'?:
|
|
3903
|
+
'$.xgafv'?: '1' | '2';
|
|
3698
3904
|
/** OAuth access token. */
|
|
3699
3905
|
access_token?: string;
|
|
3700
3906
|
/** Data format for response. */
|
|
3701
|
-
alt?:
|
|
3907
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3702
3908
|
/** JSONP */
|
|
3703
3909
|
callback?: string;
|
|
3704
3910
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3723,11 +3929,11 @@ declare namespace gapi.client {
|
|
|
3723
3929
|
repair(
|
|
3724
3930
|
request: {
|
|
3725
3931
|
/** V1 error format. */
|
|
3726
|
-
'$.xgafv'?:
|
|
3932
|
+
'$.xgafv'?: '1' | '2';
|
|
3727
3933
|
/** OAuth access token. */
|
|
3728
3934
|
access_token?: string;
|
|
3729
3935
|
/** Data format for response. */
|
|
3730
|
-
alt?:
|
|
3936
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3731
3937
|
/** JSONP */
|
|
3732
3938
|
callback?: string;
|
|
3733
3939
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3754,11 +3960,11 @@ declare namespace gapi.client {
|
|
|
3754
3960
|
/** Gets details of a single subnet. */
|
|
3755
3961
|
get(request?: {
|
|
3756
3962
|
/** V1 error format. */
|
|
3757
|
-
'$.xgafv'?:
|
|
3963
|
+
'$.xgafv'?: '1' | '2';
|
|
3758
3964
|
/** OAuth access token. */
|
|
3759
3965
|
access_token?: string;
|
|
3760
3966
|
/** Data format for response. */
|
|
3761
|
-
alt?:
|
|
3967
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3762
3968
|
/** JSONP */
|
|
3763
3969
|
callback?: string;
|
|
3764
3970
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3781,11 +3987,11 @@ declare namespace gapi.client {
|
|
|
3781
3987
|
/** Lists subnets in a given private cloud. */
|
|
3782
3988
|
list(request?: {
|
|
3783
3989
|
/** V1 error format. */
|
|
3784
|
-
'$.xgafv'?:
|
|
3990
|
+
'$.xgafv'?: '1' | '2';
|
|
3785
3991
|
/** OAuth access token. */
|
|
3786
3992
|
access_token?: string;
|
|
3787
3993
|
/** Data format for response. */
|
|
3788
|
-
alt?:
|
|
3994
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3789
3995
|
/** JSONP */
|
|
3790
3996
|
callback?: string;
|
|
3791
3997
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3812,11 +4018,11 @@ declare namespace gapi.client {
|
|
|
3812
4018
|
/** Updates the parameters of a single subnet. Only fields specified in `update_mask` are applied. *Note*: This API is synchronous and always returns a successful `google.longrunning.Operation` (LRO). The returned LRO will only have `done` and `response` fields. */
|
|
3813
4019
|
patch(request: {
|
|
3814
4020
|
/** V1 error format. */
|
|
3815
|
-
'$.xgafv'?:
|
|
4021
|
+
'$.xgafv'?: '1' | '2';
|
|
3816
4022
|
/** OAuth access token. */
|
|
3817
4023
|
access_token?: string;
|
|
3818
4024
|
/** Data format for response. */
|
|
3819
|
-
alt?:
|
|
4025
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3820
4026
|
/** JSONP */
|
|
3821
4027
|
callback?: string;
|
|
3822
4028
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3843,11 +4049,11 @@ declare namespace gapi.client {
|
|
|
3843
4049
|
patch(
|
|
3844
4050
|
request: {
|
|
3845
4051
|
/** V1 error format. */
|
|
3846
|
-
'$.xgafv'?:
|
|
4052
|
+
'$.xgafv'?: '1' | '2';
|
|
3847
4053
|
/** OAuth access token. */
|
|
3848
4054
|
access_token?: string;
|
|
3849
4055
|
/** Data format for response. */
|
|
3850
|
-
alt?:
|
|
4056
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3851
4057
|
/** JSONP */
|
|
3852
4058
|
callback?: string;
|
|
3853
4059
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3876,11 +4082,11 @@ declare namespace gapi.client {
|
|
|
3876
4082
|
/** Retrieves a private cloud `Upgrade` resource by its resource name. */
|
|
3877
4083
|
get(request?: {
|
|
3878
4084
|
/** V1 error format. */
|
|
3879
|
-
'$.xgafv'?:
|
|
4085
|
+
'$.xgafv'?: '1' | '2';
|
|
3880
4086
|
/** OAuth access token. */
|
|
3881
4087
|
access_token?: string;
|
|
3882
4088
|
/** Data format for response. */
|
|
3883
|
-
alt?:
|
|
4089
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3884
4090
|
/** JSONP */
|
|
3885
4091
|
callback?: string;
|
|
3886
4092
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3903,11 +4109,11 @@ declare namespace gapi.client {
|
|
|
3903
4109
|
/** Lists past, ongoing and upcoming `Upgrades` for the given private cloud. */
|
|
3904
4110
|
list(request?: {
|
|
3905
4111
|
/** V1 error format. */
|
|
3906
|
-
'$.xgafv'?:
|
|
4112
|
+
'$.xgafv'?: '1' | '2';
|
|
3907
4113
|
/** OAuth access token. */
|
|
3908
4114
|
access_token?: string;
|
|
3909
4115
|
/** Data format for response. */
|
|
3910
|
-
alt?:
|
|
4116
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3911
4117
|
/** JSONP */
|
|
3912
4118
|
callback?: string;
|
|
3913
4119
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3938,11 +4144,11 @@ declare namespace gapi.client {
|
|
|
3938
4144
|
/** Update the private cloud `Upgrade` resource. Only `schedule` field can updated. The schedule can only be updated when the upgrade has not started and schedule edit window is open. Only fields specified in `update_mask` are considered. */
|
|
3939
4145
|
patch(request: {
|
|
3940
4146
|
/** V1 error format. */
|
|
3941
|
-
'$.xgafv'?:
|
|
4147
|
+
'$.xgafv'?: '1' | '2';
|
|
3942
4148
|
/** OAuth access token. */
|
|
3943
4149
|
access_token?: string;
|
|
3944
4150
|
/** Data format for response. */
|
|
3945
|
-
alt?:
|
|
4151
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3946
4152
|
/** JSONP */
|
|
3947
4153
|
callback?: string;
|
|
3948
4154
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3971,11 +4177,11 @@ declare namespace gapi.client {
|
|
|
3971
4177
|
patch(
|
|
3972
4178
|
request: {
|
|
3973
4179
|
/** V1 error format. */
|
|
3974
|
-
'$.xgafv'?:
|
|
4180
|
+
'$.xgafv'?: '1' | '2';
|
|
3975
4181
|
/** OAuth access token. */
|
|
3976
4182
|
access_token?: string;
|
|
3977
4183
|
/** Data format for response. */
|
|
3978
|
-
alt?:
|
|
4184
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3979
4185
|
/** JSONP */
|
|
3980
4186
|
callback?: string;
|
|
3981
4187
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4006,11 +4212,11 @@ declare namespace gapi.client {
|
|
|
4006
4212
|
/** Creates a new `PrivateCloud` resource in a given project and location. Private clouds of type `STANDARD` and `TIME_LIMITED` are zonal resources, `STRETCHED` private clouds are regional. Creating a private cloud also creates a [management cluster](https://cloud.google.com/vmware-engine/docs/concepts-vmware-components) for that private cloud. */
|
|
4007
4213
|
create(request: {
|
|
4008
4214
|
/** V1 error format. */
|
|
4009
|
-
'$.xgafv'?:
|
|
4215
|
+
'$.xgafv'?: '1' | '2';
|
|
4010
4216
|
/** OAuth access token. */
|
|
4011
4217
|
access_token?: string;
|
|
4012
4218
|
/** Data format for response. */
|
|
4013
|
-
alt?:
|
|
4219
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4014
4220
|
/** JSONP */
|
|
4015
4221
|
callback?: string;
|
|
4016
4222
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4033,7 +4239,7 @@ declare namespace gapi.client {
|
|
|
4033
4239
|
upload_protocol?: string;
|
|
4034
4240
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4035
4241
|
uploadType?: string;
|
|
4036
|
-
/** Optional.
|
|
4242
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the request. If set to `false`, validates and executes the request. */
|
|
4037
4243
|
validateOnly?: boolean;
|
|
4038
4244
|
/** Request body */
|
|
4039
4245
|
resource: PrivateCloud;
|
|
@@ -4041,11 +4247,11 @@ declare namespace gapi.client {
|
|
|
4041
4247
|
create(
|
|
4042
4248
|
request: {
|
|
4043
4249
|
/** V1 error format. */
|
|
4044
|
-
'$.xgafv'?:
|
|
4250
|
+
'$.xgafv'?: '1' | '2';
|
|
4045
4251
|
/** OAuth access token. */
|
|
4046
4252
|
access_token?: string;
|
|
4047
4253
|
/** Data format for response. */
|
|
4048
|
-
alt?:
|
|
4254
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4049
4255
|
/** JSONP */
|
|
4050
4256
|
callback?: string;
|
|
4051
4257
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4068,7 +4274,7 @@ declare namespace gapi.client {
|
|
|
4068
4274
|
upload_protocol?: string;
|
|
4069
4275
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4070
4276
|
uploadType?: string;
|
|
4071
|
-
/** Optional.
|
|
4277
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the request. If set to `false`, validates and executes the request. */
|
|
4072
4278
|
validateOnly?: boolean;
|
|
4073
4279
|
},
|
|
4074
4280
|
body: PrivateCloud,
|
|
@@ -4076,11 +4282,11 @@ declare namespace gapi.client {
|
|
|
4076
4282
|
/** Schedules a `PrivateCloud` resource for deletion. A `PrivateCloud` resource scheduled for deletion has `PrivateCloud.state` set to `DELETED` and `expireTime` set to the time when deletion is final and can no longer be reversed. The delete operation is marked as done as soon as the `PrivateCloud` is successfully scheduled for deletion (this also applies when `delayHours` is set to zero), and the operation is not kept in pending state until `PrivateCloud` is purged. `PrivateCloud` can be restored using `UndeletePrivateCloud` method before the `expireTime` elapses. When `expireTime` is reached, deletion is final and all private cloud resources are irreversibly removed and billing stops. During the final removal process, `PrivateCloud.state` is set to `PURGING`. `PrivateCloud` can be polled using standard `GET` method for the whole period of deletion and purging. It will not be returned only when it is completely purged. */
|
|
4077
4283
|
delete(request?: {
|
|
4078
4284
|
/** V1 error format. */
|
|
4079
|
-
'$.xgafv'?:
|
|
4285
|
+
'$.xgafv'?: '1' | '2';
|
|
4080
4286
|
/** OAuth access token. */
|
|
4081
4287
|
access_token?: string;
|
|
4082
4288
|
/** Data format for response. */
|
|
4083
|
-
alt?:
|
|
4289
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4084
4290
|
/** JSONP */
|
|
4085
4291
|
callback?: string;
|
|
4086
4292
|
/** Optional. Time delay of the deletion specified in hours. The default value is `3`. Specifying a non-zero value for this field changes the value of `PrivateCloud.state` to `DELETED` and sets `expire_time` to the planned deletion time. Deletion can be cancelled before `expire_time` elapses using VmwareEngine.UndeletePrivateCloud. Specifying a value of `0` for this field instead begins the deletion process and ceases billing immediately. During the final deletion process, the value of `PrivateCloud.state` becomes `PURGING`. */
|
|
@@ -4109,11 +4315,11 @@ declare namespace gapi.client {
|
|
|
4109
4315
|
/** Retrieves a `PrivateCloud` resource by its resource name. */
|
|
4110
4316
|
get(request?: {
|
|
4111
4317
|
/** V1 error format. */
|
|
4112
|
-
'$.xgafv'?:
|
|
4318
|
+
'$.xgafv'?: '1' | '2';
|
|
4113
4319
|
/** OAuth access token. */
|
|
4114
4320
|
access_token?: string;
|
|
4115
4321
|
/** Data format for response. */
|
|
4116
|
-
alt?:
|
|
4322
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4117
4323
|
/** JSONP */
|
|
4118
4324
|
callback?: string;
|
|
4119
4325
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4136,11 +4342,11 @@ declare namespace gapi.client {
|
|
|
4136
4342
|
/** Gets details of the `DnsForwarding` config. */
|
|
4137
4343
|
getDnsForwarding(request?: {
|
|
4138
4344
|
/** V1 error format. */
|
|
4139
|
-
'$.xgafv'?:
|
|
4345
|
+
'$.xgafv'?: '1' | '2';
|
|
4140
4346
|
/** OAuth access token. */
|
|
4141
4347
|
access_token?: string;
|
|
4142
4348
|
/** Data format for response. */
|
|
4143
|
-
alt?:
|
|
4349
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4144
4350
|
/** JSONP */
|
|
4145
4351
|
callback?: string;
|
|
4146
4352
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4163,11 +4369,11 @@ declare namespace gapi.client {
|
|
|
4163
4369
|
/** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
|
|
4164
4370
|
getIamPolicy(request?: {
|
|
4165
4371
|
/** V1 error format. */
|
|
4166
|
-
'$.xgafv'?:
|
|
4372
|
+
'$.xgafv'?: '1' | '2';
|
|
4167
4373
|
/** OAuth access token. */
|
|
4168
4374
|
access_token?: string;
|
|
4169
4375
|
/** Data format for response. */
|
|
4170
|
-
alt?:
|
|
4376
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4171
4377
|
/** JSONP */
|
|
4172
4378
|
callback?: string;
|
|
4173
4379
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4192,11 +4398,11 @@ declare namespace gapi.client {
|
|
|
4192
4398
|
/** Lists `PrivateCloud` resources in a given project and location. */
|
|
4193
4399
|
list(request?: {
|
|
4194
4400
|
/** V1 error format. */
|
|
4195
|
-
'$.xgafv'?:
|
|
4401
|
+
'$.xgafv'?: '1' | '2';
|
|
4196
4402
|
/** OAuth access token. */
|
|
4197
4403
|
access_token?: string;
|
|
4198
4404
|
/** Data format for response. */
|
|
4199
|
-
alt?:
|
|
4405
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4200
4406
|
/** JSONP */
|
|
4201
4407
|
callback?: string;
|
|
4202
4408
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4224,14 +4430,72 @@ declare namespace gapi.client {
|
|
|
4224
4430
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4225
4431
|
uploadType?: string;
|
|
4226
4432
|
}): Request<ListPrivateCloudsResponse>;
|
|
4433
|
+
/** Migrates the management VMs of the PC from the current management cluster to a workload cluster. Post this migration, the provided workload cluster becomes the management cluster */
|
|
4434
|
+
migrateManagementVms(request: {
|
|
4435
|
+
/** V1 error format. */
|
|
4436
|
+
'$.xgafv'?: '1' | '2';
|
|
4437
|
+
/** OAuth access token. */
|
|
4438
|
+
access_token?: string;
|
|
4439
|
+
/** Data format for response. */
|
|
4440
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4441
|
+
/** JSONP */
|
|
4442
|
+
callback?: string;
|
|
4443
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4444
|
+
fields?: string;
|
|
4445
|
+
/** 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. */
|
|
4446
|
+
key?: string;
|
|
4447
|
+
/** Required. The resource name of the private cloud whose management vms are getting migrated. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: `projects/my-project/locations/us-central1-a/privateClouds/my-cloud` */
|
|
4448
|
+
name: string;
|
|
4449
|
+
/** OAuth 2.0 token for the current user. */
|
|
4450
|
+
oauth_token?: string;
|
|
4451
|
+
/** Returns response with indentations and line breaks. */
|
|
4452
|
+
prettyPrint?: boolean;
|
|
4453
|
+
/** 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. */
|
|
4454
|
+
quotaUser?: string;
|
|
4455
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4456
|
+
upload_protocol?: string;
|
|
4457
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4458
|
+
uploadType?: string;
|
|
4459
|
+
/** Request body */
|
|
4460
|
+
resource: MigrateManagementVmsRequest;
|
|
4461
|
+
}): Request<Operation>;
|
|
4462
|
+
migrateManagementVms(
|
|
4463
|
+
request: {
|
|
4464
|
+
/** V1 error format. */
|
|
4465
|
+
'$.xgafv'?: '1' | '2';
|
|
4466
|
+
/** OAuth access token. */
|
|
4467
|
+
access_token?: string;
|
|
4468
|
+
/** Data format for response. */
|
|
4469
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4470
|
+
/** JSONP */
|
|
4471
|
+
callback?: string;
|
|
4472
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4473
|
+
fields?: string;
|
|
4474
|
+
/** 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. */
|
|
4475
|
+
key?: string;
|
|
4476
|
+
/** Required. The resource name of the private cloud whose management vms are getting migrated. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: `projects/my-project/locations/us-central1-a/privateClouds/my-cloud` */
|
|
4477
|
+
name: string;
|
|
4478
|
+
/** OAuth 2.0 token for the current user. */
|
|
4479
|
+
oauth_token?: string;
|
|
4480
|
+
/** Returns response with indentations and line breaks. */
|
|
4481
|
+
prettyPrint?: boolean;
|
|
4482
|
+
/** 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. */
|
|
4483
|
+
quotaUser?: string;
|
|
4484
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4485
|
+
upload_protocol?: string;
|
|
4486
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4487
|
+
uploadType?: string;
|
|
4488
|
+
},
|
|
4489
|
+
body: MigrateManagementVmsRequest,
|
|
4490
|
+
): Request<Operation>;
|
|
4227
4491
|
/** Modifies a `PrivateCloud` resource. Only the following fields can be updated: `description`. Only fields specified in `updateMask` are applied. During operation processing, the resource is temporarily in the `ACTIVE` state before the operation fully completes. For that period of time, you can't update the resource. Use the operation status to determine when the processing fully completes. */
|
|
4228
4492
|
patch(request: {
|
|
4229
4493
|
/** V1 error format. */
|
|
4230
|
-
'$.xgafv'?:
|
|
4494
|
+
'$.xgafv'?: '1' | '2';
|
|
4231
4495
|
/** OAuth access token. */
|
|
4232
4496
|
access_token?: string;
|
|
4233
4497
|
/** Data format for response. */
|
|
4234
|
-
alt?:
|
|
4498
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4235
4499
|
/** JSONP */
|
|
4236
4500
|
callback?: string;
|
|
4237
4501
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4254,17 +4518,19 @@ declare namespace gapi.client {
|
|
|
4254
4518
|
upload_protocol?: string;
|
|
4255
4519
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4256
4520
|
uploadType?: string;
|
|
4521
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the request. If set to `false`, validates and executes the request. */
|
|
4522
|
+
validateOnly?: boolean;
|
|
4257
4523
|
/** Request body */
|
|
4258
4524
|
resource: PrivateCloud;
|
|
4259
4525
|
}): Request<Operation>;
|
|
4260
4526
|
patch(
|
|
4261
4527
|
request: {
|
|
4262
4528
|
/** V1 error format. */
|
|
4263
|
-
'$.xgafv'?:
|
|
4529
|
+
'$.xgafv'?: '1' | '2';
|
|
4264
4530
|
/** OAuth access token. */
|
|
4265
4531
|
access_token?: string;
|
|
4266
4532
|
/** Data format for response. */
|
|
4267
|
-
alt?:
|
|
4533
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4268
4534
|
/** JSONP */
|
|
4269
4535
|
callback?: string;
|
|
4270
4536
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4287,17 +4553,19 @@ declare namespace gapi.client {
|
|
|
4287
4553
|
upload_protocol?: string;
|
|
4288
4554
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4289
4555
|
uploadType?: string;
|
|
4556
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the request. If set to `false`, validates and executes the request. */
|
|
4557
|
+
validateOnly?: boolean;
|
|
4290
4558
|
},
|
|
4291
4559
|
body: PrivateCloud,
|
|
4292
4560
|
): Request<Operation>;
|
|
4293
4561
|
/** Accelerates the deletion of a private cloud that is currently in soft deletion A `PrivateCloud` resource in soft deletion has `PrivateCloud.state` set to `SOFT_DELETED` and `PrivateCloud.expireTime` set to the time when deletion can no longer be reversed. */
|
|
4294
4562
|
privateCloudDeletionNow(request: {
|
|
4295
4563
|
/** V1 error format. */
|
|
4296
|
-
'$.xgafv'?:
|
|
4564
|
+
'$.xgafv'?: '1' | '2';
|
|
4297
4565
|
/** OAuth access token. */
|
|
4298
4566
|
access_token?: string;
|
|
4299
4567
|
/** Data format for response. */
|
|
4300
|
-
alt?:
|
|
4568
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4301
4569
|
/** JSONP */
|
|
4302
4570
|
callback?: string;
|
|
4303
4571
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4322,11 +4590,11 @@ declare namespace gapi.client {
|
|
|
4322
4590
|
privateCloudDeletionNow(
|
|
4323
4591
|
request: {
|
|
4324
4592
|
/** V1 error format. */
|
|
4325
|
-
'$.xgafv'?:
|
|
4593
|
+
'$.xgafv'?: '1' | '2';
|
|
4326
4594
|
/** OAuth access token. */
|
|
4327
4595
|
access_token?: string;
|
|
4328
4596
|
/** Data format for response. */
|
|
4329
|
-
alt?:
|
|
4597
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4330
4598
|
/** JSONP */
|
|
4331
4599
|
callback?: string;
|
|
4332
4600
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4351,11 +4619,11 @@ declare namespace gapi.client {
|
|
|
4351
4619
|
/** Resets credentials of the NSX appliance. */
|
|
4352
4620
|
resetNsxCredentials(request: {
|
|
4353
4621
|
/** V1 error format. */
|
|
4354
|
-
'$.xgafv'?:
|
|
4622
|
+
'$.xgafv'?: '1' | '2';
|
|
4355
4623
|
/** OAuth access token. */
|
|
4356
4624
|
access_token?: string;
|
|
4357
4625
|
/** Data format for response. */
|
|
4358
|
-
alt?:
|
|
4626
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4359
4627
|
/** JSONP */
|
|
4360
4628
|
callback?: string;
|
|
4361
4629
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4380,11 +4648,11 @@ declare namespace gapi.client {
|
|
|
4380
4648
|
resetNsxCredentials(
|
|
4381
4649
|
request: {
|
|
4382
4650
|
/** V1 error format. */
|
|
4383
|
-
'$.xgafv'?:
|
|
4651
|
+
'$.xgafv'?: '1' | '2';
|
|
4384
4652
|
/** OAuth access token. */
|
|
4385
4653
|
access_token?: string;
|
|
4386
4654
|
/** Data format for response. */
|
|
4387
|
-
alt?:
|
|
4655
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4388
4656
|
/** JSONP */
|
|
4389
4657
|
callback?: string;
|
|
4390
4658
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4409,11 +4677,11 @@ declare namespace gapi.client {
|
|
|
4409
4677
|
/** Resets credentials of the Vcenter appliance. */
|
|
4410
4678
|
resetVcenterCredentials(request: {
|
|
4411
4679
|
/** V1 error format. */
|
|
4412
|
-
'$.xgafv'?:
|
|
4680
|
+
'$.xgafv'?: '1' | '2';
|
|
4413
4681
|
/** OAuth access token. */
|
|
4414
4682
|
access_token?: string;
|
|
4415
4683
|
/** Data format for response. */
|
|
4416
|
-
alt?:
|
|
4684
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4417
4685
|
/** JSONP */
|
|
4418
4686
|
callback?: string;
|
|
4419
4687
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4438,11 +4706,11 @@ declare namespace gapi.client {
|
|
|
4438
4706
|
resetVcenterCredentials(
|
|
4439
4707
|
request: {
|
|
4440
4708
|
/** V1 error format. */
|
|
4441
|
-
'$.xgafv'?:
|
|
4709
|
+
'$.xgafv'?: '1' | '2';
|
|
4442
4710
|
/** OAuth access token. */
|
|
4443
4711
|
access_token?: string;
|
|
4444
4712
|
/** Data format for response. */
|
|
4445
|
-
alt?:
|
|
4713
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4446
4714
|
/** JSONP */
|
|
4447
4715
|
callback?: string;
|
|
4448
4716
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4468,11 +4736,11 @@ declare namespace gapi.client {
|
|
|
4468
4736
|
setIamPolicy(
|
|
4469
4737
|
request: {
|
|
4470
4738
|
/** V1 error format. */
|
|
4471
|
-
'$.xgafv'?:
|
|
4739
|
+
'$.xgafv'?: '1' | '2';
|
|
4472
4740
|
/** OAuth access token. */
|
|
4473
4741
|
access_token?: string;
|
|
4474
4742
|
/** Data format for response. */
|
|
4475
|
-
alt?:
|
|
4743
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4476
4744
|
/** JSONP */
|
|
4477
4745
|
callback?: string;
|
|
4478
4746
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4497,11 +4765,11 @@ declare namespace gapi.client {
|
|
|
4497
4765
|
/** Gets details of credentials for NSX appliance. */
|
|
4498
4766
|
showNsxCredentials(request?: {
|
|
4499
4767
|
/** V1 error format. */
|
|
4500
|
-
'$.xgafv'?:
|
|
4768
|
+
'$.xgafv'?: '1' | '2';
|
|
4501
4769
|
/** OAuth access token. */
|
|
4502
4770
|
access_token?: string;
|
|
4503
4771
|
/** Data format for response. */
|
|
4504
|
-
alt?:
|
|
4772
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4505
4773
|
/** JSONP */
|
|
4506
4774
|
callback?: string;
|
|
4507
4775
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4524,11 +4792,11 @@ declare namespace gapi.client {
|
|
|
4524
4792
|
/** Gets details of credentials for Vcenter appliance. */
|
|
4525
4793
|
showVcenterCredentials(request?: {
|
|
4526
4794
|
/** V1 error format. */
|
|
4527
|
-
'$.xgafv'?:
|
|
4795
|
+
'$.xgafv'?: '1' | '2';
|
|
4528
4796
|
/** OAuth access token. */
|
|
4529
4797
|
access_token?: string;
|
|
4530
4798
|
/** Data format for response. */
|
|
4531
|
-
alt?:
|
|
4799
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4532
4800
|
/** JSONP */
|
|
4533
4801
|
callback?: string;
|
|
4534
4802
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4554,11 +4822,11 @@ declare namespace gapi.client {
|
|
|
4554
4822
|
testIamPermissions(
|
|
4555
4823
|
request: {
|
|
4556
4824
|
/** V1 error format. */
|
|
4557
|
-
'$.xgafv'?:
|
|
4825
|
+
'$.xgafv'?: '1' | '2';
|
|
4558
4826
|
/** OAuth access token. */
|
|
4559
4827
|
access_token?: string;
|
|
4560
4828
|
/** Data format for response. */
|
|
4561
|
-
alt?:
|
|
4829
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4562
4830
|
/** JSONP */
|
|
4563
4831
|
callback?: string;
|
|
4564
4832
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4583,11 +4851,11 @@ declare namespace gapi.client {
|
|
|
4583
4851
|
/** Restores a private cloud that was previously scheduled for deletion by `DeletePrivateCloud`. A `PrivateCloud` resource scheduled for deletion has `PrivateCloud.state` set to `DELETED` and `PrivateCloud.expireTime` set to the time when deletion can no longer be reversed. */
|
|
4584
4852
|
undelete(request: {
|
|
4585
4853
|
/** V1 error format. */
|
|
4586
|
-
'$.xgafv'?:
|
|
4854
|
+
'$.xgafv'?: '1' | '2';
|
|
4587
4855
|
/** OAuth access token. */
|
|
4588
4856
|
access_token?: string;
|
|
4589
4857
|
/** Data format for response. */
|
|
4590
|
-
alt?:
|
|
4858
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4591
4859
|
/** JSONP */
|
|
4592
4860
|
callback?: string;
|
|
4593
4861
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4612,11 +4880,11 @@ declare namespace gapi.client {
|
|
|
4612
4880
|
undelete(
|
|
4613
4881
|
request: {
|
|
4614
4882
|
/** V1 error format. */
|
|
4615
|
-
'$.xgafv'?:
|
|
4883
|
+
'$.xgafv'?: '1' | '2';
|
|
4616
4884
|
/** OAuth access token. */
|
|
4617
4885
|
access_token?: string;
|
|
4618
4886
|
/** Data format for response. */
|
|
4619
|
-
alt?:
|
|
4887
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4620
4888
|
/** JSONP */
|
|
4621
4889
|
callback?: string;
|
|
4622
4890
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4641,11 +4909,11 @@ declare namespace gapi.client {
|
|
|
4641
4909
|
/** Updates the parameters of the `DnsForwarding` config, like associated domains. Only fields specified in `update_mask` are applied. */
|
|
4642
4910
|
updateDnsForwarding(request: {
|
|
4643
4911
|
/** V1 error format. */
|
|
4644
|
-
'$.xgafv'?:
|
|
4912
|
+
'$.xgafv'?: '1' | '2';
|
|
4645
4913
|
/** OAuth access token. */
|
|
4646
4914
|
access_token?: string;
|
|
4647
4915
|
/** Data format for response. */
|
|
4648
|
-
alt?:
|
|
4916
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4649
4917
|
/** JSONP */
|
|
4650
4918
|
callback?: string;
|
|
4651
4919
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4674,11 +4942,11 @@ declare namespace gapi.client {
|
|
|
4674
4942
|
updateDnsForwarding(
|
|
4675
4943
|
request: {
|
|
4676
4944
|
/** V1 error format. */
|
|
4677
|
-
'$.xgafv'?:
|
|
4945
|
+
'$.xgafv'?: '1' | '2';
|
|
4678
4946
|
/** OAuth access token. */
|
|
4679
4947
|
access_token?: string;
|
|
4680
4948
|
/** Data format for response. */
|
|
4681
|
-
alt?:
|
|
4949
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4682
4950
|
/** JSONP */
|
|
4683
4951
|
callback?: string;
|
|
4684
4952
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4716,11 +4984,11 @@ declare namespace gapi.client {
|
|
|
4716
4984
|
/** Lists the private connection routes exchanged over a peering connection. */
|
|
4717
4985
|
list(request?: {
|
|
4718
4986
|
/** V1 error format. */
|
|
4719
|
-
'$.xgafv'?:
|
|
4987
|
+
'$.xgafv'?: '1' | '2';
|
|
4720
4988
|
/** OAuth access token. */
|
|
4721
4989
|
access_token?: string;
|
|
4722
4990
|
/** Data format for response. */
|
|
4723
|
-
alt?:
|
|
4991
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4724
4992
|
/** JSONP */
|
|
4725
4993
|
callback?: string;
|
|
4726
4994
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4749,11 +5017,11 @@ declare namespace gapi.client {
|
|
|
4749
5017
|
/** Creates a new private connection that can be used for accessing private Clouds. */
|
|
4750
5018
|
create(request: {
|
|
4751
5019
|
/** V1 error format. */
|
|
4752
|
-
'$.xgafv'?:
|
|
5020
|
+
'$.xgafv'?: '1' | '2';
|
|
4753
5021
|
/** OAuth access token. */
|
|
4754
5022
|
access_token?: string;
|
|
4755
5023
|
/** Data format for response. */
|
|
4756
|
-
alt?:
|
|
5024
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4757
5025
|
/** JSONP */
|
|
4758
5026
|
callback?: string;
|
|
4759
5027
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4776,17 +5044,19 @@ declare namespace gapi.client {
|
|
|
4776
5044
|
upload_protocol?: string;
|
|
4777
5045
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4778
5046
|
uploadType?: string;
|
|
5047
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the request. If set to `false`, validates and executes the request. */
|
|
5048
|
+
validateOnly?: boolean;
|
|
4779
5049
|
/** Request body */
|
|
4780
5050
|
resource: PrivateConnection;
|
|
4781
5051
|
}): Request<Operation>;
|
|
4782
5052
|
create(
|
|
4783
5053
|
request: {
|
|
4784
5054
|
/** V1 error format. */
|
|
4785
|
-
'$.xgafv'?:
|
|
5055
|
+
'$.xgafv'?: '1' | '2';
|
|
4786
5056
|
/** OAuth access token. */
|
|
4787
5057
|
access_token?: string;
|
|
4788
5058
|
/** Data format for response. */
|
|
4789
|
-
alt?:
|
|
5059
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4790
5060
|
/** JSONP */
|
|
4791
5061
|
callback?: string;
|
|
4792
5062
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4809,17 +5079,19 @@ declare namespace gapi.client {
|
|
|
4809
5079
|
upload_protocol?: string;
|
|
4810
5080
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4811
5081
|
uploadType?: string;
|
|
5082
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the request. If set to `false`, validates and executes the request. */
|
|
5083
|
+
validateOnly?: boolean;
|
|
4812
5084
|
},
|
|
4813
5085
|
body: PrivateConnection,
|
|
4814
5086
|
): Request<Operation>;
|
|
4815
5087
|
/** Deletes a `PrivateConnection` resource. When a private connection is deleted for a VMware Engine network, the connected network becomes inaccessible to that VMware Engine network. */
|
|
4816
5088
|
delete(request?: {
|
|
4817
5089
|
/** V1 error format. */
|
|
4818
|
-
'$.xgafv'?:
|
|
5090
|
+
'$.xgafv'?: '1' | '2';
|
|
4819
5091
|
/** OAuth access token. */
|
|
4820
5092
|
access_token?: string;
|
|
4821
5093
|
/** Data format for response. */
|
|
4822
|
-
alt?:
|
|
5094
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4823
5095
|
/** JSONP */
|
|
4824
5096
|
callback?: string;
|
|
4825
5097
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4844,11 +5116,11 @@ declare namespace gapi.client {
|
|
|
4844
5116
|
/** Retrieves a `PrivateConnection` resource by its resource name. The resource contains details of the private connection, such as connected network, routing mode and state. */
|
|
4845
5117
|
get(request?: {
|
|
4846
5118
|
/** V1 error format. */
|
|
4847
|
-
'$.xgafv'?:
|
|
5119
|
+
'$.xgafv'?: '1' | '2';
|
|
4848
5120
|
/** OAuth access token. */
|
|
4849
5121
|
access_token?: string;
|
|
4850
5122
|
/** Data format for response. */
|
|
4851
|
-
alt?:
|
|
5123
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4852
5124
|
/** JSONP */
|
|
4853
5125
|
callback?: string;
|
|
4854
5126
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4871,11 +5143,11 @@ declare namespace gapi.client {
|
|
|
4871
5143
|
/** Lists `PrivateConnection` resources in a given project and location. */
|
|
4872
5144
|
list(request?: {
|
|
4873
5145
|
/** V1 error format. */
|
|
4874
|
-
'$.xgafv'?:
|
|
5146
|
+
'$.xgafv'?: '1' | '2';
|
|
4875
5147
|
/** OAuth access token. */
|
|
4876
5148
|
access_token?: string;
|
|
4877
5149
|
/** Data format for response. */
|
|
4878
|
-
alt?:
|
|
5150
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4879
5151
|
/** JSONP */
|
|
4880
5152
|
callback?: string;
|
|
4881
5153
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4906,11 +5178,11 @@ declare namespace gapi.client {
|
|
|
4906
5178
|
/** Modifies a `PrivateConnection` resource. Only `description` and `routing_mode` fields can be updated. Only fields specified in `updateMask` are applied. */
|
|
4907
5179
|
patch(request: {
|
|
4908
5180
|
/** V1 error format. */
|
|
4909
|
-
'$.xgafv'?:
|
|
5181
|
+
'$.xgafv'?: '1' | '2';
|
|
4910
5182
|
/** OAuth access token. */
|
|
4911
5183
|
access_token?: string;
|
|
4912
5184
|
/** Data format for response. */
|
|
4913
|
-
alt?:
|
|
5185
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4914
5186
|
/** JSONP */
|
|
4915
5187
|
callback?: string;
|
|
4916
5188
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4933,17 +5205,19 @@ declare namespace gapi.client {
|
|
|
4933
5205
|
upload_protocol?: string;
|
|
4934
5206
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4935
5207
|
uploadType?: string;
|
|
5208
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the request. If set to `false`, validates and executes the request. */
|
|
5209
|
+
validateOnly?: boolean;
|
|
4936
5210
|
/** Request body */
|
|
4937
5211
|
resource: PrivateConnection;
|
|
4938
5212
|
}): Request<Operation>;
|
|
4939
5213
|
patch(
|
|
4940
5214
|
request: {
|
|
4941
5215
|
/** V1 error format. */
|
|
4942
|
-
'$.xgafv'?:
|
|
5216
|
+
'$.xgafv'?: '1' | '2';
|
|
4943
5217
|
/** OAuth access token. */
|
|
4944
5218
|
access_token?: string;
|
|
4945
5219
|
/** Data format for response. */
|
|
4946
|
-
alt?:
|
|
5220
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4947
5221
|
/** JSONP */
|
|
4948
5222
|
callback?: string;
|
|
4949
5223
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4966,6 +5240,8 @@ declare namespace gapi.client {
|
|
|
4966
5240
|
upload_protocol?: string;
|
|
4967
5241
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4968
5242
|
uploadType?: string;
|
|
5243
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the request. If set to `false`, validates and executes the request. */
|
|
5244
|
+
validateOnly?: boolean;
|
|
4969
5245
|
},
|
|
4970
5246
|
body: PrivateConnection,
|
|
4971
5247
|
): Request<Operation>;
|
|
@@ -4975,11 +5251,11 @@ declare namespace gapi.client {
|
|
|
4975
5251
|
/** Creates a new VMware Engine network that can be used by a private cloud. */
|
|
4976
5252
|
create(request: {
|
|
4977
5253
|
/** V1 error format. */
|
|
4978
|
-
'$.xgafv'?:
|
|
5254
|
+
'$.xgafv'?: '1' | '2';
|
|
4979
5255
|
/** OAuth access token. */
|
|
4980
5256
|
access_token?: string;
|
|
4981
5257
|
/** Data format for response. */
|
|
4982
|
-
alt?:
|
|
5258
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4983
5259
|
/** JSONP */
|
|
4984
5260
|
callback?: string;
|
|
4985
5261
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -5000,6 +5276,8 @@ declare namespace gapi.client {
|
|
|
5000
5276
|
upload_protocol?: string;
|
|
5001
5277
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5002
5278
|
uploadType?: string;
|
|
5279
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the request. If set to `false`, validates and executes the request. */
|
|
5280
|
+
validateOnly?: boolean;
|
|
5003
5281
|
/** Required. The user-provided identifier of the new VMware Engine network. This identifier must be unique among VMware Engine network resources within the parent and becomes the final token in the name URI. The identifier must meet the following requirements: * For networks of type LEGACY, adheres to the format: `{region-id}-default`. Replace `{region-id}` with the region where you want to create the VMware Engine network. For example, "us-central1-default". * Only contains 1-63 alphanumeric characters and hyphens * Begins with an alphabetical character * Ends with a non-hyphen character * Not formatted as a UUID * Complies with [RFC 1034](https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5) */
|
|
5004
5282
|
vmwareEngineNetworkId?: string;
|
|
5005
5283
|
/** Request body */
|
|
@@ -5008,11 +5286,11 @@ declare namespace gapi.client {
|
|
|
5008
5286
|
create(
|
|
5009
5287
|
request: {
|
|
5010
5288
|
/** V1 error format. */
|
|
5011
|
-
'$.xgafv'?:
|
|
5289
|
+
'$.xgafv'?: '1' | '2';
|
|
5012
5290
|
/** OAuth access token. */
|
|
5013
5291
|
access_token?: string;
|
|
5014
5292
|
/** Data format for response. */
|
|
5015
|
-
alt?:
|
|
5293
|
+
alt?: 'json' | 'media' | 'proto';
|
|
5016
5294
|
/** JSONP */
|
|
5017
5295
|
callback?: string;
|
|
5018
5296
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -5033,6 +5311,8 @@ declare namespace gapi.client {
|
|
|
5033
5311
|
upload_protocol?: string;
|
|
5034
5312
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5035
5313
|
uploadType?: string;
|
|
5314
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the request. If set to `false`, validates and executes the request. */
|
|
5315
|
+
validateOnly?: boolean;
|
|
5036
5316
|
/** Required. The user-provided identifier of the new VMware Engine network. This identifier must be unique among VMware Engine network resources within the parent and becomes the final token in the name URI. The identifier must meet the following requirements: * For networks of type LEGACY, adheres to the format: `{region-id}-default`. Replace `{region-id}` with the region where you want to create the VMware Engine network. For example, "us-central1-default". * Only contains 1-63 alphanumeric characters and hyphens * Begins with an alphabetical character * Ends with a non-hyphen character * Not formatted as a UUID * Complies with [RFC 1034](https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5) */
|
|
5037
5317
|
vmwareEngineNetworkId?: string;
|
|
5038
5318
|
},
|
|
@@ -5041,11 +5321,11 @@ declare namespace gapi.client {
|
|
|
5041
5321
|
/** Deletes a `VmwareEngineNetwork` resource. You can only delete a VMware Engine network after all resources that refer to it are deleted. For example, a private cloud, a network peering, and a network policy can all refer to the same VMware Engine network. */
|
|
5042
5322
|
delete(request?: {
|
|
5043
5323
|
/** V1 error format. */
|
|
5044
|
-
'$.xgafv'?:
|
|
5324
|
+
'$.xgafv'?: '1' | '2';
|
|
5045
5325
|
/** OAuth access token. */
|
|
5046
5326
|
access_token?: string;
|
|
5047
5327
|
/** Data format for response. */
|
|
5048
|
-
alt?:
|
|
5328
|
+
alt?: 'json' | 'media' | 'proto';
|
|
5049
5329
|
/** JSONP */
|
|
5050
5330
|
callback?: string;
|
|
5051
5331
|
/** Optional. Checksum used to ensure that the user-provided value is up to date before the server processes the request. The server compares provided checksum with the current checksum of the resource. If the user-provided value is out of date, this request returns an `ABORTED` error. */
|
|
@@ -5072,11 +5352,11 @@ declare namespace gapi.client {
|
|
|
5072
5352
|
/** Retrieves a `VmwareEngineNetwork` resource by its resource name. The resource contains details of the VMware Engine network, such as its VMware Engine network type, peered networks in a service project, and state (for example, `CREATING`, `ACTIVE`, `DELETING`). */
|
|
5073
5353
|
get(request?: {
|
|
5074
5354
|
/** V1 error format. */
|
|
5075
|
-
'$.xgafv'?:
|
|
5355
|
+
'$.xgafv'?: '1' | '2';
|
|
5076
5356
|
/** OAuth access token. */
|
|
5077
5357
|
access_token?: string;
|
|
5078
5358
|
/** Data format for response. */
|
|
5079
|
-
alt?:
|
|
5359
|
+
alt?: 'json' | 'media' | 'proto';
|
|
5080
5360
|
/** JSONP */
|
|
5081
5361
|
callback?: string;
|
|
5082
5362
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -5099,11 +5379,11 @@ declare namespace gapi.client {
|
|
|
5099
5379
|
/** Lists `VmwareEngineNetwork` resources in a given project and location. */
|
|
5100
5380
|
list(request?: {
|
|
5101
5381
|
/** V1 error format. */
|
|
5102
|
-
'$.xgafv'?:
|
|
5382
|
+
'$.xgafv'?: '1' | '2';
|
|
5103
5383
|
/** OAuth access token. */
|
|
5104
5384
|
access_token?: string;
|
|
5105
5385
|
/** Data format for response. */
|
|
5106
|
-
alt?:
|
|
5386
|
+
alt?: 'json' | 'media' | 'proto';
|
|
5107
5387
|
/** JSONP */
|
|
5108
5388
|
callback?: string;
|
|
5109
5389
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -5134,11 +5414,11 @@ declare namespace gapi.client {
|
|
|
5134
5414
|
/** Modifies a VMware Engine network resource. Only the following fields can be updated: `description`. Only fields specified in `updateMask` are applied. */
|
|
5135
5415
|
patch(request: {
|
|
5136
5416
|
/** V1 error format. */
|
|
5137
|
-
'$.xgafv'?:
|
|
5417
|
+
'$.xgafv'?: '1' | '2';
|
|
5138
5418
|
/** OAuth access token. */
|
|
5139
5419
|
access_token?: string;
|
|
5140
5420
|
/** Data format for response. */
|
|
5141
|
-
alt?:
|
|
5421
|
+
alt?: 'json' | 'media' | 'proto';
|
|
5142
5422
|
/** JSONP */
|
|
5143
5423
|
callback?: string;
|
|
5144
5424
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -5161,17 +5441,19 @@ declare namespace gapi.client {
|
|
|
5161
5441
|
upload_protocol?: string;
|
|
5162
5442
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5163
5443
|
uploadType?: string;
|
|
5444
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the request. If set to `false`, validates and executes the request. */
|
|
5445
|
+
validateOnly?: boolean;
|
|
5164
5446
|
/** Request body */
|
|
5165
5447
|
resource: VmwareEngineNetwork;
|
|
5166
5448
|
}): Request<Operation>;
|
|
5167
5449
|
patch(
|
|
5168
5450
|
request: {
|
|
5169
5451
|
/** V1 error format. */
|
|
5170
|
-
'$.xgafv'?:
|
|
5452
|
+
'$.xgafv'?: '1' | '2';
|
|
5171
5453
|
/** OAuth access token. */
|
|
5172
5454
|
access_token?: string;
|
|
5173
5455
|
/** Data format for response. */
|
|
5174
|
-
alt?:
|
|
5456
|
+
alt?: 'json' | 'media' | 'proto';
|
|
5175
5457
|
/** JSONP */
|
|
5176
5458
|
callback?: string;
|
|
5177
5459
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -5194,6 +5476,8 @@ declare namespace gapi.client {
|
|
|
5194
5476
|
upload_protocol?: string;
|
|
5195
5477
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5196
5478
|
uploadType?: string;
|
|
5479
|
+
/** Optional. If set to `true`, only validates the request but doesn’t execute the request. If set to `false`, validates and executes the request. */
|
|
5480
|
+
validateOnly?: boolean;
|
|
5197
5481
|
},
|
|
5198
5482
|
body: VmwareEngineNetwork,
|
|
5199
5483
|
): Request<Operation>;
|
|
@@ -5202,11 +5486,11 @@ declare namespace gapi.client {
|
|
|
5202
5486
|
/** Gets information about a location. */
|
|
5203
5487
|
get(request?: {
|
|
5204
5488
|
/** V1 error format. */
|
|
5205
|
-
'$.xgafv'?:
|
|
5489
|
+
'$.xgafv'?: '1' | '2';
|
|
5206
5490
|
/** OAuth access token. */
|
|
5207
5491
|
access_token?: string;
|
|
5208
5492
|
/** Data format for response. */
|
|
5209
|
-
alt?:
|
|
5493
|
+
alt?: 'json' | 'media' | 'proto';
|
|
5210
5494
|
/** JSONP */
|
|
5211
5495
|
callback?: string;
|
|
5212
5496
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -5229,11 +5513,11 @@ declare namespace gapi.client {
|
|
|
5229
5513
|
/** Gets all the principals having bind permission on the intranet VPC associated with the consumer project granted by the Grant API. DnsBindPermission is a global resource and location can only be global. */
|
|
5230
5514
|
getDnsBindPermission(request?: {
|
|
5231
5515
|
/** V1 error format. */
|
|
5232
|
-
'$.xgafv'?:
|
|
5516
|
+
'$.xgafv'?: '1' | '2';
|
|
5233
5517
|
/** OAuth access token. */
|
|
5234
5518
|
access_token?: string;
|
|
5235
5519
|
/** Data format for response. */
|
|
5236
|
-
alt?:
|
|
5520
|
+
alt?: 'json' | 'media' | 'proto';
|
|
5237
5521
|
/** JSONP */
|
|
5238
5522
|
callback?: string;
|
|
5239
5523
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -5253,17 +5537,17 @@ declare namespace gapi.client {
|
|
|
5253
5537
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5254
5538
|
uploadType?: string;
|
|
5255
5539
|
}): Request<DnsBindPermission>;
|
|
5256
|
-
/** Lists information about the supported locations for this service. This method
|
|
5540
|
+
/** Lists information about the supported locations for this service. This method lists locations based on the resource scope provided in the ListLocationsRequest.name field: * **Global locations**: If `name` is empty, the method lists the public locations available to all projects. * **Project-specific locations**: If `name` follows the format `projects/{project}`, the method lists locations visible to that specific project. This includes public, private, or other project-specific locations enabled for the project. For gRPC and client library implementations, the resource name is passed as the `name` field. For direct service calls, the resource name is incorporated into the request path based on the specific service implementation and version. */
|
|
5257
5541
|
list(request?: {
|
|
5258
5542
|
/** V1 error format. */
|
|
5259
|
-
'$.xgafv'?:
|
|
5543
|
+
'$.xgafv'?: '1' | '2';
|
|
5260
5544
|
/** OAuth access token. */
|
|
5261
5545
|
access_token?: string;
|
|
5262
5546
|
/** Data format for response. */
|
|
5263
|
-
alt?:
|
|
5547
|
+
alt?: 'json' | 'media' | 'proto';
|
|
5264
5548
|
/** JSONP */
|
|
5265
5549
|
callback?: string;
|
|
5266
|
-
/** Optional. Do not use this field
|
|
5550
|
+
/** Optional. Do not use this field unless explicitly documented otherwise. This is primarily for internal usage. */
|
|
5267
5551
|
extraLocationTypes?: string | string[];
|
|
5268
5552
|
/** Selector specifying which fields to include in a partial response. */
|
|
5269
5553
|
fields?: string;
|