@maxim_mazurok/gapi.client.vmwareengine-v1 0.1.20260217 → 0.2.20260217

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.
Files changed (2) hide show
  1. package/index.d.ts +477 -315
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -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?: string;
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?: string;
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?: string;
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?: string;
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?: string;
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?: string;
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?: string;
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?: string;
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?: string;
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?: string;
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?: string;
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?: string[];
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?: string;
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?: string;
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?: string;
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. */
@@ -576,9 +618,23 @@ declare namespace gapi.client {
576
618
  /** 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
619
  peerNetwork?: string;
578
620
  /** Required. The type of the network to peer with the VMware Engine network. */
579
- peerNetworkType?: string;
621
+ peerNetworkType?:
622
+ | 'PEER_NETWORK_TYPE_UNSPECIFIED'
623
+ | 'STANDARD'
624
+ | 'VMWARE_ENGINE_NETWORK'
625
+ | 'PRIVATE_SERVICES_ACCESS'
626
+ | 'NETAPP_CLOUD_VOLUMES'
627
+ | 'THIRD_PARTY_SERVICE'
628
+ | 'DELL_POWERSCALE'
629
+ | 'GOOGLE_CLOUD_NETAPP_VOLUMES'
630
+ | 'GOOGLE_CLOUD_FILESTORE_INSTANCES';
580
631
  /** 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?: string;
632
+ state?:
633
+ | 'STATE_UNSPECIFIED'
634
+ | 'INACTIVE'
635
+ | 'ACTIVE'
636
+ | 'CREATING'
637
+ | 'DELETING';
582
638
  /** Output only. Output Only. Details about the current state of the network peering. */
583
639
  stateDetails?: string;
584
640
  /** Output only. System-generated unique identifier for the resource. */
@@ -614,7 +670,7 @@ declare namespace gapi.client {
614
670
  /** True if the service is enabled; false otherwise. */
615
671
  enabled?: boolean;
616
672
  /** Output only. State of the service. New values may be added to this enum when appropriate. */
617
- state?: string;
673
+ state?: 'STATE_UNSPECIFIED' | 'UNPROVISIONED' | 'RECONCILING' | 'ACTIVE';
618
674
  }
619
675
  interface NfsDatastore {
620
676
  /** Google file service configuration */
@@ -636,7 +692,12 @@ declare namespace gapi.client {
636
692
  /** Output only. The canonical identifier of the node type (corresponds to the `NodeType`). For example: standard-72. */
637
693
  nodeTypeId?: string;
638
694
  /** Output only. The state of the appliance. */
639
- state?: string;
695
+ state?:
696
+ | 'STATE_UNSPECIFIED'
697
+ | 'ACTIVE'
698
+ | 'CREATING'
699
+ | 'FAILED'
700
+ | 'UPGRADING';
640
701
  /** Output only. The version number of the VMware ESXi management component in this cluster. */
641
702
  version?: string;
642
703
  }
@@ -644,7 +705,7 @@ declare namespace gapi.client {
644
705
  /** Output only. List of possible values of custom core count. */
645
706
  availableCustomCoreCounts?: number[];
646
707
  /** Output only. Capabilities of this node type. */
647
- capabilities?: string[];
708
+ capabilities?: 'CAPABILITY_UNSPECIFIED' | 'STRETCHED_CLUSTERS'[];
648
709
  /** Output only. The amount of storage available, defined in GB. */
649
710
  diskSizeGb?: number;
650
711
  /** Output only. The friendly name for this node type. For example: ve1-standard-72 */
@@ -652,7 +713,7 @@ declare namespace gapi.client {
652
713
  /** 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
714
  families?: string[];
654
715
  /** Output only. The type of the resource. */
655
- kind?: string;
716
+ kind?: 'KIND_UNSPECIFIED' | 'STANDARD' | 'STORAGE_ONLY';
656
717
  /** Output only. The amount of physical memory available, defined in GB. */
657
718
  memoryGb?: number;
658
719
  /** 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 +737,7 @@ declare namespace gapi.client {
676
737
  /** Internal IP address of the appliance. */
677
738
  internalIp?: string;
678
739
  /** Output only. The state of the appliance. */
679
- state?: string;
740
+ state?: 'STATE_UNSPECIFIED' | 'ACTIVE' | 'CREATING';
680
741
  /** Version of the appliance. */
681
742
  version?: string;
682
743
  }
@@ -712,7 +773,7 @@ declare namespace gapi.client {
712
773
  /** Output only. Destination range of the peering route in CIDR notation. */
713
774
  destRange?: string;
714
775
  /** 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?: string;
776
+ direction?: 'DIRECTION_UNSPECIFIED' | 'INCOMING' | 'OUTGOING';
716
777
  /** 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
778
  imported?: boolean;
718
779
  /** 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 +781,11 @@ declare namespace gapi.client {
720
781
  /** Output only. The priority of the peering route. */
721
782
  priority?: string;
722
783
  /** Output only. Type of the route in the peer VPC network. */
723
- type?: string;
784
+ type?:
785
+ | 'TYPE_UNSPECIFIED'
786
+ | 'DYNAMIC_PEERING_ROUTE'
787
+ | 'STATIC_PEERING_ROUTE'
788
+ | 'SUBNET_PEERING_ROUTE';
724
789
  }
725
790
  interface Policy {
726
791
  /** Specifies cloud audit logging configuration for this policy. */
@@ -758,9 +823,16 @@ declare namespace gapi.client {
758
823
  /** Output only. NSX appliance. */
759
824
  nsx?: Nsx;
760
825
  /** Output only. State of the resource. New values may be added to this enum when appropriate. */
761
- state?: string;
826
+ state?:
827
+ | 'STATE_UNSPECIFIED'
828
+ | 'ACTIVE'
829
+ | 'CREATING'
830
+ | 'UPDATING'
831
+ | 'FAILED'
832
+ | 'DELETED'
833
+ | 'PURGING';
762
834
  /** Optional. Type of the private cloud. Defaults to STANDARD. */
763
- type?: string;
835
+ type?: 'STANDARD' | 'TIME_LIMITED' | 'STRETCHED';
764
836
  /** Output only. System-generated unique identifier for the resource. */
765
837
  uid?: string;
766
838
  /** Output only. Last update time of this resource. */
@@ -778,15 +850,30 @@ declare namespace gapi.client {
778
850
  /** Output only. VPC network peering id between given network VPC and VMwareEngineNetwork. */
779
851
  peeringId?: string;
780
852
  /** Output only. Peering state between service network and VMware Engine network. */
781
- peeringState?: string;
853
+ peeringState?:
854
+ | 'PEERING_STATE_UNSPECIFIED'
855
+ | 'PEERING_ACTIVE'
856
+ | 'PEERING_INACTIVE';
782
857
  /** 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?: string;
858
+ routingMode?: 'ROUTING_MODE_UNSPECIFIED' | 'GLOBAL' | 'REGIONAL';
784
859
  /** 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
860
  serviceNetwork?: string;
786
861
  /** Output only. State of the private connection. */
787
- state?: string;
862
+ state?:
863
+ | 'STATE_UNSPECIFIED'
864
+ | 'CREATING'
865
+ | 'ACTIVE'
866
+ | 'UPDATING'
867
+ | 'DELETING'
868
+ | 'UNPROVISIONED'
869
+ | 'FAILED';
788
870
  /** Required. Private connection type. */
789
- type?: string;
871
+ type?:
872
+ | 'TYPE_UNSPECIFIED'
873
+ | 'PRIVATE_SERVICE_ACCESS'
874
+ | 'NETAPP_CLOUD_VOLUMES'
875
+ | 'DELL_POWERSCALE'
876
+ | 'THIRD_PARTY_SERVICE';
790
877
  /** Output only. System-generated unique identifier for the resource. */
791
878
  uid?: string;
792
879
  /** Output only. Last update time of this resource. */
@@ -822,7 +909,7 @@ declare namespace gapi.client {
822
909
  /** Output only. Output Only. The schedule is open for edits during this time interval or window. */
823
910
  editWindow?: Interval;
824
911
  /** Output only. Output Only. Indicates who most recently edited the upgrade schedule. The value is updated whenever the upgrade is rescheduled. */
825
- lastEditor?: string;
912
+ lastEditor?: 'EDITOR_UNSPECIFIED' | 'SYSTEM' | 'USER';
826
913
  /** Required. The scheduled start time for the upgrade. */
827
914
  startTime?: string;
828
915
  /** Required. Weekly time windows for upgrade activities. The server performs upgrade activities during these time windows to minimize disruptions. */
@@ -856,7 +943,14 @@ declare namespace gapi.client {
856
943
  /** 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
944
  name?: string;
858
945
  /** Output only. The state of the resource. */
859
- state?: string;
946
+ state?:
947
+ | 'STATE_UNSPECIFIED'
948
+ | 'ACTIVE'
949
+ | 'CREATING'
950
+ | 'UPDATING'
951
+ | 'DELETING'
952
+ | 'RECONCILING'
953
+ | 'FAILED';
860
954
  /** Output only. The type of the subnet. For example "management" or "userDefined". */
861
955
  type?: string;
862
956
  /** Output only. VLAN ID of the VLAN on which the subnet is configured */
@@ -896,7 +990,15 @@ declare namespace gapi.client {
896
990
  }
897
991
  interface TimeWindow {
898
992
  /** Required. Day of the week for this window. */
899
- dayOfWeek?: string;
993
+ dayOfWeek?:
994
+ | 'DAY_OF_WEEK_UNSPECIFIED'
995
+ | 'MONDAY'
996
+ | 'TUESDAY'
997
+ | 'WEDNESDAY'
998
+ | 'THURSDAY'
999
+ | 'FRIDAY'
1000
+ | 'SATURDAY'
1001
+ | 'SUNDAY';
900
1002
  /** Required. The duration of the window. The max allowed duration for any window is 24 hours. */
901
1003
  duration?: string;
902
1004
  /** Required. Time in UTC when the window starts. */
@@ -932,11 +1034,28 @@ declare namespace gapi.client {
932
1034
  /** Output only. Output Only. The start version */
933
1035
  startVersion?: string;
934
1036
  /** Output only. The current state of the upgrade. */
935
- state?: string;
1037
+ state?:
1038
+ | 'STATE_UNSPECIFIED'
1039
+ | 'SCHEDULED'
1040
+ | 'ONGOING'
1041
+ | 'SUCCEEDED'
1042
+ | 'PAUSED'
1043
+ | 'FAILED'
1044
+ | 'CANCELLING'
1045
+ | 'CANCELLED'
1046
+ | 'RESCHEDULING';
936
1047
  /** Output only. Output Only. The target version */
937
1048
  targetVersion?: string;
938
1049
  /** Output only. Output Only. The type of upgrade. */
939
- type?: string;
1050
+ type?:
1051
+ | 'TYPE_UNSPECIFIED'
1052
+ | 'VSPHERE_UPGRADE'
1053
+ | 'VSPHERE_PATCH'
1054
+ | 'WORKAROUND'
1055
+ | 'FIRMWARE_UPGRADE'
1056
+ | 'SWITCH_UPGRADE'
1057
+ | 'OTHER'
1058
+ | 'INFRASTRUCTURE_UPGRADE';
940
1059
  /** Output only. System-generated unique identifier for the resource. */
941
1060
  uid?: string;
942
1061
  /** Output only. Output Only. Last update time of this resource. */
@@ -950,7 +1069,7 @@ declare namespace gapi.client {
950
1069
  /** Internal IP address of the appliance. */
951
1070
  internalIp?: string;
952
1071
  /** Output only. The state of the appliance. */
953
- state?: string;
1072
+ state?: 'STATE_UNSPECIFIED' | 'ACTIVE' | 'CREATING';
954
1073
  /** Version of the appliance. */
955
1074
  version?: string;
956
1075
  }
@@ -964,9 +1083,14 @@ declare namespace gapi.client {
964
1083
  /** 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
1084
  name?: string;
966
1085
  /** Output only. State of the VMware Engine network. */
967
- state?: string;
1086
+ state?:
1087
+ | 'STATE_UNSPECIFIED'
1088
+ | 'CREATING'
1089
+ | 'ACTIVE'
1090
+ | 'UPDATING'
1091
+ | 'DELETING';
968
1092
  /** Required. VMware Engine network type. */
969
- type?: string;
1093
+ type?: 'TYPE_UNSPECIFIED' | 'LEGACY' | 'STANDARD';
970
1094
  /** Output only. System-generated unique identifier for the resource. */
971
1095
  uid?: string;
972
1096
  /** Output only. Last update time of this resource. */
@@ -976,23 +1100,61 @@ declare namespace gapi.client {
976
1100
  }
977
1101
  interface VmwareUpgradeComponent {
978
1102
  /** Output only. Type of component */
979
- componentType?: string;
1103
+ componentType?:
1104
+ | 'VMWARE_COMPONENT_TYPE_UNSPECIFIED'
1105
+ | 'VCENTER'
1106
+ | 'ESXI'
1107
+ | 'NSXT_UC'
1108
+ | 'NSXT_EDGE'
1109
+ | 'NSXT_MGR'
1110
+ | 'HCX'
1111
+ | 'VSAN'
1112
+ | 'DVS'
1113
+ | 'NAMESERVER_VM'
1114
+ | 'KMS_VM'
1115
+ | 'WITNESS_VM'
1116
+ | 'NSXT'
1117
+ | 'CLUSTER'
1118
+ | 'VM_TOOLS';
980
1119
  /** Output only. Component's upgrade state. */
981
- state?: string;
1120
+ state?:
1121
+ | 'STATE_UNSPECIFIED'
1122
+ | 'RUNNING'
1123
+ | 'PAUSED'
1124
+ | 'SUCCEEDED'
1125
+ | 'FAILED'
1126
+ | 'NOT_STARTED'
1127
+ | 'NOT_APPLICABLE';
982
1128
  }
983
1129
  interface VpcNetwork {
984
1130
  /** 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
1131
  network?: string;
986
1132
  /** Output only. Type of VPC network (INTRANET, INTERNET, or GOOGLE_CLOUD) */
987
- type?: string;
1133
+ type?: 'TYPE_UNSPECIFIED' | 'INTRANET' | 'INTERNET' | 'GOOGLE_CLOUD';
988
1134
  }
989
1135
  interface WeeklyTimeInterval {
990
1136
  /** Output only. The day on which the interval ends. Can be same as start day. */
991
- endDay?: string;
1137
+ endDay?:
1138
+ | 'DAY_OF_WEEK_UNSPECIFIED'
1139
+ | 'MONDAY'
1140
+ | 'TUESDAY'
1141
+ | 'WEDNESDAY'
1142
+ | 'THURSDAY'
1143
+ | 'FRIDAY'
1144
+ | 'SATURDAY'
1145
+ | 'SUNDAY';
992
1146
  /** Output only. The time on the end day at which the interval ends. */
993
1147
  endTime?: TimeOfDay;
994
1148
  /** Output only. The day on which the interval starts. */
995
- startDay?: string;
1149
+ startDay?:
1150
+ | 'DAY_OF_WEEK_UNSPECIFIED'
1151
+ | 'MONDAY'
1152
+ | 'TUESDAY'
1153
+ | 'WEDNESDAY'
1154
+ | 'THURSDAY'
1155
+ | 'FRIDAY'
1156
+ | 'SATURDAY'
1157
+ | 'SUNDAY';
996
1158
  /** Output only. The time on the start day at which the interval starts. */
997
1159
  startTime?: TimeOfDay;
998
1160
  }
@@ -1000,11 +1162,11 @@ declare namespace gapi.client {
1000
1162
  /** Retrieves a `Announcement` by its resource name. */
1001
1163
  get(request?: {
1002
1164
  /** V1 error format. */
1003
- '$.xgafv'?: string;
1165
+ '$.xgafv'?: '1' | '2';
1004
1166
  /** OAuth access token. */
1005
1167
  access_token?: string;
1006
1168
  /** Data format for response. */
1007
- alt?: string;
1169
+ alt?: 'json' | 'media' | 'proto';
1008
1170
  /** JSONP */
1009
1171
  callback?: string;
1010
1172
  /** Selector specifying which fields to include in a partial response. */
@@ -1027,11 +1189,11 @@ declare namespace gapi.client {
1027
1189
  /** Lists `Announcements` for a given region and project */
1028
1190
  list(request?: {
1029
1191
  /** V1 error format. */
1030
- '$.xgafv'?: string;
1192
+ '$.xgafv'?: '1' | '2';
1031
1193
  /** OAuth access token. */
1032
1194
  access_token?: string;
1033
1195
  /** Data format for response. */
1034
- alt?: string;
1196
+ alt?: 'json' | 'media' | 'proto';
1035
1197
  /** JSONP */
1036
1198
  callback?: string;
1037
1199
  /** Selector specifying which fields to include in a partial response. */
@@ -1064,11 +1226,11 @@ declare namespace gapi.client {
1064
1226
  /** Creates a new `Datastore` resource in a given project and location. */
1065
1227
  create(request: {
1066
1228
  /** V1 error format. */
1067
- '$.xgafv'?: string;
1229
+ '$.xgafv'?: '1' | '2';
1068
1230
  /** OAuth access token. */
1069
1231
  access_token?: string;
1070
1232
  /** Data format for response. */
1071
- alt?: string;
1233
+ alt?: 'json' | 'media' | 'proto';
1072
1234
  /** JSONP */
1073
1235
  callback?: string;
1074
1236
  /** 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 +1259,11 @@ declare namespace gapi.client {
1097
1259
  create(
1098
1260
  request: {
1099
1261
  /** V1 error format. */
1100
- '$.xgafv'?: string;
1262
+ '$.xgafv'?: '1' | '2';
1101
1263
  /** OAuth access token. */
1102
1264
  access_token?: string;
1103
1265
  /** Data format for response. */
1104
- alt?: string;
1266
+ alt?: 'json' | 'media' | 'proto';
1105
1267
  /** JSONP */
1106
1268
  callback?: string;
1107
1269
  /** 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 +1292,11 @@ declare namespace gapi.client {
1130
1292
  /** 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
1293
  delete(request?: {
1132
1294
  /** V1 error format. */
1133
- '$.xgafv'?: string;
1295
+ '$.xgafv'?: '1' | '2';
1134
1296
  /** OAuth access token. */
1135
1297
  access_token?: string;
1136
1298
  /** Data format for response. */
1137
- alt?: string;
1299
+ alt?: 'json' | 'media' | 'proto';
1138
1300
  /** JSONP */
1139
1301
  callback?: string;
1140
1302
  /** 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 +1323,11 @@ declare namespace gapi.client {
1161
1323
  /** Retrieves a `Datastore` resource by its resource name. The resource contains details of the Datastore, such as its description, subnets, type, and more. */
1162
1324
  get(request?: {
1163
1325
  /** V1 error format. */
1164
- '$.xgafv'?: string;
1326
+ '$.xgafv'?: '1' | '2';
1165
1327
  /** OAuth access token. */
1166
1328
  access_token?: string;
1167
1329
  /** Data format for response. */
1168
- alt?: string;
1330
+ alt?: 'json' | 'media' | 'proto';
1169
1331
  /** JSONP */
1170
1332
  callback?: string;
1171
1333
  /** Selector specifying which fields to include in a partial response. */
@@ -1188,11 +1350,11 @@ declare namespace gapi.client {
1188
1350
  /** Lists `Datastore` resources in a given project and location. */
1189
1351
  list(request?: {
1190
1352
  /** V1 error format. */
1191
- '$.xgafv'?: string;
1353
+ '$.xgafv'?: '1' | '2';
1192
1354
  /** OAuth access token. */
1193
1355
  access_token?: string;
1194
1356
  /** Data format for response. */
1195
- alt?: string;
1357
+ alt?: 'json' | 'media' | 'proto';
1196
1358
  /** JSONP */
1197
1359
  callback?: string;
1198
1360
  /** Selector specifying which fields to include in a partial response. */
@@ -1225,11 +1387,11 @@ declare namespace gapi.client {
1225
1387
  /** Modifies a Datastore resource. Only fields specified in `updateMask` are applied. */
1226
1388
  patch(request: {
1227
1389
  /** V1 error format. */
1228
- '$.xgafv'?: string;
1390
+ '$.xgafv'?: '1' | '2';
1229
1391
  /** OAuth access token. */
1230
1392
  access_token?: string;
1231
1393
  /** Data format for response. */
1232
- alt?: string;
1394
+ alt?: 'json' | 'media' | 'proto';
1233
1395
  /** JSONP */
1234
1396
  callback?: string;
1235
1397
  /** Selector specifying which fields to include in a partial response. */
@@ -1258,11 +1420,11 @@ declare namespace gapi.client {
1258
1420
  patch(
1259
1421
  request: {
1260
1422
  /** V1 error format. */
1261
- '$.xgafv'?: string;
1423
+ '$.xgafv'?: '1' | '2';
1262
1424
  /** OAuth access token. */
1263
1425
  access_token?: string;
1264
1426
  /** Data format for response. */
1265
- alt?: string;
1427
+ alt?: 'json' | 'media' | 'proto';
1266
1428
  /** JSONP */
1267
1429
  callback?: string;
1268
1430
  /** Selector specifying which fields to include in a partial response. */
@@ -1293,11 +1455,11 @@ declare namespace gapi.client {
1293
1455
  /** 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
1456
  grant(request: {
1295
1457
  /** V1 error format. */
1296
- '$.xgafv'?: string;
1458
+ '$.xgafv'?: '1' | '2';
1297
1459
  /** OAuth access token. */
1298
1460
  access_token?: string;
1299
1461
  /** Data format for response. */
1300
- alt?: string;
1462
+ alt?: 'json' | 'media' | 'proto';
1301
1463
  /** JSONP */
1302
1464
  callback?: string;
1303
1465
  /** Selector specifying which fields to include in a partial response. */
@@ -1322,11 +1484,11 @@ declare namespace gapi.client {
1322
1484
  grant(
1323
1485
  request: {
1324
1486
  /** V1 error format. */
1325
- '$.xgafv'?: string;
1487
+ '$.xgafv'?: '1' | '2';
1326
1488
  /** OAuth access token. */
1327
1489
  access_token?: string;
1328
1490
  /** Data format for response. */
1329
- alt?: string;
1491
+ alt?: 'json' | 'media' | 'proto';
1330
1492
  /** JSONP */
1331
1493
  callback?: string;
1332
1494
  /** Selector specifying which fields to include in a partial response. */
@@ -1351,11 +1513,11 @@ declare namespace gapi.client {
1351
1513
  /** 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
1514
  revoke(request: {
1353
1515
  /** V1 error format. */
1354
- '$.xgafv'?: string;
1516
+ '$.xgafv'?: '1' | '2';
1355
1517
  /** OAuth access token. */
1356
1518
  access_token?: string;
1357
1519
  /** Data format for response. */
1358
- alt?: string;
1520
+ alt?: 'json' | 'media' | 'proto';
1359
1521
  /** JSONP */
1360
1522
  callback?: string;
1361
1523
  /** Selector specifying which fields to include in a partial response. */
@@ -1380,11 +1542,11 @@ declare namespace gapi.client {
1380
1542
  revoke(
1381
1543
  request: {
1382
1544
  /** V1 error format. */
1383
- '$.xgafv'?: string;
1545
+ '$.xgafv'?: '1' | '2';
1384
1546
  /** OAuth access token. */
1385
1547
  access_token?: string;
1386
1548
  /** Data format for response. */
1387
- alt?: string;
1549
+ alt?: 'json' | 'media' | 'proto';
1388
1550
  /** JSONP */
1389
1551
  callback?: string;
1390
1552
  /** Selector specifying which fields to include in a partial response. */
@@ -1411,11 +1573,11 @@ declare namespace gapi.client {
1411
1573
  /** Lists the network peering routes exchanged over a peering connection. NetworkPeering is a global resource and location can only be global. */
1412
1574
  list(request?: {
1413
1575
  /** V1 error format. */
1414
- '$.xgafv'?: string;
1576
+ '$.xgafv'?: '1' | '2';
1415
1577
  /** OAuth access token. */
1416
1578
  access_token?: string;
1417
1579
  /** Data format for response. */
1418
- alt?: string;
1580
+ alt?: 'json' | 'media' | 'proto';
1419
1581
  /** JSONP */
1420
1582
  callback?: string;
1421
1583
  /** Selector specifying which fields to include in a partial response. */
@@ -1446,11 +1608,11 @@ declare namespace gapi.client {
1446
1608
  /** 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
1609
  create(request: {
1448
1610
  /** V1 error format. */
1449
- '$.xgafv'?: string;
1611
+ '$.xgafv'?: '1' | '2';
1450
1612
  /** OAuth access token. */
1451
1613
  access_token?: string;
1452
1614
  /** Data format for response. */
1453
- alt?: string;
1615
+ alt?: 'json' | 'media' | 'proto';
1454
1616
  /** JSONP */
1455
1617
  callback?: string;
1456
1618
  /** Selector specifying which fields to include in a partial response. */
@@ -1479,11 +1641,11 @@ declare namespace gapi.client {
1479
1641
  create(
1480
1642
  request: {
1481
1643
  /** V1 error format. */
1482
- '$.xgafv'?: string;
1644
+ '$.xgafv'?: '1' | '2';
1483
1645
  /** OAuth access token. */
1484
1646
  access_token?: string;
1485
1647
  /** Data format for response. */
1486
- alt?: string;
1648
+ alt?: 'json' | 'media' | 'proto';
1487
1649
  /** JSONP */
1488
1650
  callback?: string;
1489
1651
  /** Selector specifying which fields to include in a partial response. */
@@ -1512,11 +1674,11 @@ declare namespace gapi.client {
1512
1674
  /** 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
1675
  delete(request?: {
1514
1676
  /** V1 error format. */
1515
- '$.xgafv'?: string;
1677
+ '$.xgafv'?: '1' | '2';
1516
1678
  /** OAuth access token. */
1517
1679
  access_token?: string;
1518
1680
  /** Data format for response. */
1519
- alt?: string;
1681
+ alt?: 'json' | 'media' | 'proto';
1520
1682
  /** JSONP */
1521
1683
  callback?: string;
1522
1684
  /** Selector specifying which fields to include in a partial response. */
@@ -1541,11 +1703,11 @@ declare namespace gapi.client {
1541
1703
  /** 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
1704
  get(request?: {
1543
1705
  /** V1 error format. */
1544
- '$.xgafv'?: string;
1706
+ '$.xgafv'?: '1' | '2';
1545
1707
  /** OAuth access token. */
1546
1708
  access_token?: string;
1547
1709
  /** Data format for response. */
1548
- alt?: string;
1710
+ alt?: 'json' | 'media' | 'proto';
1549
1711
  /** JSONP */
1550
1712
  callback?: string;
1551
1713
  /** Selector specifying which fields to include in a partial response. */
@@ -1568,11 +1730,11 @@ declare namespace gapi.client {
1568
1730
  /** Lists `NetworkPeering` resources in a given project. NetworkPeering is a global resource and location can only be global. */
1569
1731
  list(request?: {
1570
1732
  /** V1 error format. */
1571
- '$.xgafv'?: string;
1733
+ '$.xgafv'?: '1' | '2';
1572
1734
  /** OAuth access token. */
1573
1735
  access_token?: string;
1574
1736
  /** Data format for response. */
1575
- alt?: string;
1737
+ alt?: 'json' | 'media' | 'proto';
1576
1738
  /** JSONP */
1577
1739
  callback?: string;
1578
1740
  /** Selector specifying which fields to include in a partial response. */
@@ -1603,11 +1765,11 @@ declare namespace gapi.client {
1603
1765
  /** 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
1766
  patch(request: {
1605
1767
  /** V1 error format. */
1606
- '$.xgafv'?: string;
1768
+ '$.xgafv'?: '1' | '2';
1607
1769
  /** OAuth access token. */
1608
1770
  access_token?: string;
1609
1771
  /** Data format for response. */
1610
- alt?: string;
1772
+ alt?: 'json' | 'media' | 'proto';
1611
1773
  /** JSONP */
1612
1774
  callback?: string;
1613
1775
  /** Selector specifying which fields to include in a partial response. */
@@ -1636,11 +1798,11 @@ declare namespace gapi.client {
1636
1798
  patch(
1637
1799
  request: {
1638
1800
  /** V1 error format. */
1639
- '$.xgafv'?: string;
1801
+ '$.xgafv'?: '1' | '2';
1640
1802
  /** OAuth access token. */
1641
1803
  access_token?: string;
1642
1804
  /** Data format for response. */
1643
- alt?: string;
1805
+ alt?: 'json' | 'media' | 'proto';
1644
1806
  /** JSONP */
1645
1807
  callback?: string;
1646
1808
  /** Selector specifying which fields to include in a partial response. */
@@ -1672,11 +1834,11 @@ declare namespace gapi.client {
1672
1834
  /** Creates a new external access rule in a given network policy. */
1673
1835
  create(request: {
1674
1836
  /** V1 error format. */
1675
- '$.xgafv'?: string;
1837
+ '$.xgafv'?: '1' | '2';
1676
1838
  /** OAuth access token. */
1677
1839
  access_token?: string;
1678
1840
  /** Data format for response. */
1679
- alt?: string;
1841
+ alt?: 'json' | 'media' | 'proto';
1680
1842
  /** JSONP */
1681
1843
  callback?: string;
1682
1844
  /** 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) */
@@ -1705,11 +1867,11 @@ declare namespace gapi.client {
1705
1867
  create(
1706
1868
  request: {
1707
1869
  /** V1 error format. */
1708
- '$.xgafv'?: string;
1870
+ '$.xgafv'?: '1' | '2';
1709
1871
  /** OAuth access token. */
1710
1872
  access_token?: string;
1711
1873
  /** Data format for response. */
1712
- alt?: string;
1874
+ alt?: 'json' | 'media' | 'proto';
1713
1875
  /** JSONP */
1714
1876
  callback?: string;
1715
1877
  /** 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) */
@@ -1738,11 +1900,11 @@ declare namespace gapi.client {
1738
1900
  /** Deletes a single external access rule. */
1739
1901
  delete(request?: {
1740
1902
  /** V1 error format. */
1741
- '$.xgafv'?: string;
1903
+ '$.xgafv'?: '1' | '2';
1742
1904
  /** OAuth access token. */
1743
1905
  access_token?: string;
1744
1906
  /** Data format for response. */
1745
- alt?: string;
1907
+ alt?: 'json' | 'media' | 'proto';
1746
1908
  /** JSONP */
1747
1909
  callback?: string;
1748
1910
  /** Selector specifying which fields to include in a partial response. */
@@ -1767,11 +1929,11 @@ declare namespace gapi.client {
1767
1929
  /** Gets details of a single external access rule. */
1768
1930
  get(request?: {
1769
1931
  /** V1 error format. */
1770
- '$.xgafv'?: string;
1932
+ '$.xgafv'?: '1' | '2';
1771
1933
  /** OAuth access token. */
1772
1934
  access_token?: string;
1773
1935
  /** Data format for response. */
1774
- alt?: string;
1936
+ alt?: 'json' | 'media' | 'proto';
1775
1937
  /** JSONP */
1776
1938
  callback?: string;
1777
1939
  /** Selector specifying which fields to include in a partial response. */
@@ -1794,11 +1956,11 @@ declare namespace gapi.client {
1794
1956
  /** Lists `ExternalAccessRule` resources in the specified network policy. */
1795
1957
  list(request?: {
1796
1958
  /** V1 error format. */
1797
- '$.xgafv'?: string;
1959
+ '$.xgafv'?: '1' | '2';
1798
1960
  /** OAuth access token. */
1799
1961
  access_token?: string;
1800
1962
  /** Data format for response. */
1801
- alt?: string;
1963
+ alt?: 'json' | 'media' | 'proto';
1802
1964
  /** JSONP */
1803
1965
  callback?: string;
1804
1966
  /** Selector specifying which fields to include in a partial response. */
@@ -1829,11 +1991,11 @@ declare namespace gapi.client {
1829
1991
  /** Updates the parameters of a single external access rule. Only fields specified in `update_mask` are applied. */
1830
1992
  patch(request: {
1831
1993
  /** V1 error format. */
1832
- '$.xgafv'?: string;
1994
+ '$.xgafv'?: '1' | '2';
1833
1995
  /** OAuth access token. */
1834
1996
  access_token?: string;
1835
1997
  /** Data format for response. */
1836
- alt?: string;
1998
+ alt?: 'json' | 'media' | 'proto';
1837
1999
  /** JSONP */
1838
2000
  callback?: string;
1839
2001
  /** Selector specifying which fields to include in a partial response. */
@@ -1862,11 +2024,11 @@ declare namespace gapi.client {
1862
2024
  patch(
1863
2025
  request: {
1864
2026
  /** V1 error format. */
1865
- '$.xgafv'?: string;
2027
+ '$.xgafv'?: '1' | '2';
1866
2028
  /** OAuth access token. */
1867
2029
  access_token?: string;
1868
2030
  /** Data format for response. */
1869
- alt?: string;
2031
+ alt?: 'json' | 'media' | 'proto';
1870
2032
  /** JSONP */
1871
2033
  callback?: string;
1872
2034
  /** Selector specifying which fields to include in a partial response. */
@@ -1897,11 +2059,11 @@ declare namespace gapi.client {
1897
2059
  /** 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
2060
  create(request: {
1899
2061
  /** V1 error format. */
1900
- '$.xgafv'?: string;
2062
+ '$.xgafv'?: '1' | '2';
1901
2063
  /** OAuth access token. */
1902
2064
  access_token?: string;
1903
2065
  /** Data format for response. */
1904
- alt?: string;
2066
+ alt?: 'json' | 'media' | 'proto';
1905
2067
  /** JSONP */
1906
2068
  callback?: string;
1907
2069
  /** Selector specifying which fields to include in a partial response. */
@@ -1930,11 +2092,11 @@ declare namespace gapi.client {
1930
2092
  create(
1931
2093
  request: {
1932
2094
  /** V1 error format. */
1933
- '$.xgafv'?: string;
2095
+ '$.xgafv'?: '1' | '2';
1934
2096
  /** OAuth access token. */
1935
2097
  access_token?: string;
1936
2098
  /** Data format for response. */
1937
- alt?: string;
2099
+ alt?: 'json' | 'media' | 'proto';
1938
2100
  /** JSONP */
1939
2101
  callback?: string;
1940
2102
  /** Selector specifying which fields to include in a partial response. */
@@ -1963,11 +2125,11 @@ declare namespace gapi.client {
1963
2125
  /** 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
2126
  delete(request?: {
1965
2127
  /** V1 error format. */
1966
- '$.xgafv'?: string;
2128
+ '$.xgafv'?: '1' | '2';
1967
2129
  /** OAuth access token. */
1968
2130
  access_token?: string;
1969
2131
  /** Data format for response. */
1970
- alt?: string;
2132
+ alt?: 'json' | 'media' | 'proto';
1971
2133
  /** JSONP */
1972
2134
  callback?: string;
1973
2135
  /** Selector specifying which fields to include in a partial response. */
@@ -1992,11 +2154,11 @@ declare namespace gapi.client {
1992
2154
  /** Lists external IP addresses assigned to VMware workload VMs within the scope of the given network policy. */
1993
2155
  fetchExternalAddresses(request?: {
1994
2156
  /** V1 error format. */
1995
- '$.xgafv'?: string;
2157
+ '$.xgafv'?: '1' | '2';
1996
2158
  /** OAuth access token. */
1997
2159
  access_token?: string;
1998
2160
  /** Data format for response. */
1999
- alt?: string;
2161
+ alt?: 'json' | 'media' | 'proto';
2000
2162
  /** JSONP */
2001
2163
  callback?: string;
2002
2164
  /** Selector specifying which fields to include in a partial response. */
@@ -2023,11 +2185,11 @@ declare namespace gapi.client {
2023
2185
  /** Retrieves a `NetworkPolicy` resource by its resource name. */
2024
2186
  get(request?: {
2025
2187
  /** V1 error format. */
2026
- '$.xgafv'?: string;
2188
+ '$.xgafv'?: '1' | '2';
2027
2189
  /** OAuth access token. */
2028
2190
  access_token?: string;
2029
2191
  /** Data format for response. */
2030
- alt?: string;
2192
+ alt?: 'json' | 'media' | 'proto';
2031
2193
  /** JSONP */
2032
2194
  callback?: string;
2033
2195
  /** Selector specifying which fields to include in a partial response. */
@@ -2050,11 +2212,11 @@ declare namespace gapi.client {
2050
2212
  /** Lists `NetworkPolicy` resources in a specified project and location. */
2051
2213
  list(request?: {
2052
2214
  /** V1 error format. */
2053
- '$.xgafv'?: string;
2215
+ '$.xgafv'?: '1' | '2';
2054
2216
  /** OAuth access token. */
2055
2217
  access_token?: string;
2056
2218
  /** Data format for response. */
2057
- alt?: string;
2219
+ alt?: 'json' | 'media' | 'proto';
2058
2220
  /** JSONP */
2059
2221
  callback?: string;
2060
2222
  /** Selector specifying which fields to include in a partial response. */
@@ -2085,11 +2247,11 @@ declare namespace gapi.client {
2085
2247
  /** 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
2248
  patch(request: {
2087
2249
  /** V1 error format. */
2088
- '$.xgafv'?: string;
2250
+ '$.xgafv'?: '1' | '2';
2089
2251
  /** OAuth access token. */
2090
2252
  access_token?: string;
2091
2253
  /** Data format for response. */
2092
- alt?: string;
2254
+ alt?: 'json' | 'media' | 'proto';
2093
2255
  /** JSONP */
2094
2256
  callback?: string;
2095
2257
  /** Selector specifying which fields to include in a partial response. */
@@ -2118,11 +2280,11 @@ declare namespace gapi.client {
2118
2280
  patch(
2119
2281
  request: {
2120
2282
  /** V1 error format. */
2121
- '$.xgafv'?: string;
2283
+ '$.xgafv'?: '1' | '2';
2122
2284
  /** OAuth access token. */
2123
2285
  access_token?: string;
2124
2286
  /** Data format for response. */
2125
- alt?: string;
2287
+ alt?: 'json' | 'media' | 'proto';
2126
2288
  /** JSONP */
2127
2289
  callback?: string;
2128
2290
  /** Selector specifying which fields to include in a partial response. */
@@ -2154,11 +2316,11 @@ declare namespace gapi.client {
2154
2316
  /** Gets details of a single `NodeType`. */
2155
2317
  get(request?: {
2156
2318
  /** V1 error format. */
2157
- '$.xgafv'?: string;
2319
+ '$.xgafv'?: '1' | '2';
2158
2320
  /** OAuth access token. */
2159
2321
  access_token?: string;
2160
2322
  /** Data format for response. */
2161
- alt?: string;
2323
+ alt?: 'json' | 'media' | 'proto';
2162
2324
  /** JSONP */
2163
2325
  callback?: string;
2164
2326
  /** Selector specifying which fields to include in a partial response. */
@@ -2181,11 +2343,11 @@ declare namespace gapi.client {
2181
2343
  /** Lists node types */
2182
2344
  list(request?: {
2183
2345
  /** V1 error format. */
2184
- '$.xgafv'?: string;
2346
+ '$.xgafv'?: '1' | '2';
2185
2347
  /** OAuth access token. */
2186
2348
  access_token?: string;
2187
2349
  /** Data format for response. */
2188
- alt?: string;
2350
+ alt?: 'json' | 'media' | 'proto';
2189
2351
  /** JSONP */
2190
2352
  callback?: string;
2191
2353
  /** Selector specifying which fields to include in a partial response. */
@@ -2216,11 +2378,11 @@ declare namespace gapi.client {
2216
2378
  /** 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
2379
  delete(request?: {
2218
2380
  /** V1 error format. */
2219
- '$.xgafv'?: string;
2381
+ '$.xgafv'?: '1' | '2';
2220
2382
  /** OAuth access token. */
2221
2383
  access_token?: string;
2222
2384
  /** Data format for response. */
2223
- alt?: string;
2385
+ alt?: 'json' | 'media' | 'proto';
2224
2386
  /** JSONP */
2225
2387
  callback?: string;
2226
2388
  /** Selector specifying which fields to include in a partial response. */
@@ -2243,11 +2405,11 @@ declare namespace gapi.client {
2243
2405
  /** 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
2406
  get(request?: {
2245
2407
  /** V1 error format. */
2246
- '$.xgafv'?: string;
2408
+ '$.xgafv'?: '1' | '2';
2247
2409
  /** OAuth access token. */
2248
2410
  access_token?: string;
2249
2411
  /** Data format for response. */
2250
- alt?: string;
2412
+ alt?: 'json' | 'media' | 'proto';
2251
2413
  /** JSONP */
2252
2414
  callback?: string;
2253
2415
  /** Selector specifying which fields to include in a partial response. */
@@ -2270,11 +2432,11 @@ declare namespace gapi.client {
2270
2432
  /** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
2271
2433
  list(request?: {
2272
2434
  /** V1 error format. */
2273
- '$.xgafv'?: string;
2435
+ '$.xgafv'?: '1' | '2';
2274
2436
  /** OAuth access token. */
2275
2437
  access_token?: string;
2276
2438
  /** Data format for response. */
2277
- alt?: string;
2439
+ alt?: 'json' | 'media' | 'proto';
2278
2440
  /** JSONP */
2279
2441
  callback?: string;
2280
2442
  /** Selector specifying which fields to include in a partial response. */
@@ -2307,11 +2469,11 @@ declare namespace gapi.client {
2307
2469
  /** Gets details of a single node. */
2308
2470
  get(request?: {
2309
2471
  /** V1 error format. */
2310
- '$.xgafv'?: string;
2472
+ '$.xgafv'?: '1' | '2';
2311
2473
  /** OAuth access token. */
2312
2474
  access_token?: string;
2313
2475
  /** Data format for response. */
2314
- alt?: string;
2476
+ alt?: 'json' | 'media' | 'proto';
2315
2477
  /** JSONP */
2316
2478
  callback?: string;
2317
2479
  /** Selector specifying which fields to include in a partial response. */
@@ -2334,11 +2496,11 @@ declare namespace gapi.client {
2334
2496
  /** Lists nodes in a given cluster. */
2335
2497
  list(request?: {
2336
2498
  /** V1 error format. */
2337
- '$.xgafv'?: string;
2499
+ '$.xgafv'?: '1' | '2';
2338
2500
  /** OAuth access token. */
2339
2501
  access_token?: string;
2340
2502
  /** Data format for response. */
2341
- alt?: string;
2503
+ alt?: 'json' | 'media' | 'proto';
2342
2504
  /** JSONP */
2343
2505
  callback?: string;
2344
2506
  /** Selector specifying which fields to include in a partial response. */
@@ -2367,11 +2529,11 @@ declare namespace gapi.client {
2367
2529
  /** 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
2530
  create(request: {
2369
2531
  /** V1 error format. */
2370
- '$.xgafv'?: string;
2532
+ '$.xgafv'?: '1' | '2';
2371
2533
  /** OAuth access token. */
2372
2534
  access_token?: string;
2373
2535
  /** Data format for response. */
2374
- alt?: string;
2536
+ alt?: 'json' | 'media' | 'proto';
2375
2537
  /** JSONP */
2376
2538
  callback?: string;
2377
2539
  /** 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) */
@@ -2402,11 +2564,11 @@ declare namespace gapi.client {
2402
2564
  create(
2403
2565
  request: {
2404
2566
  /** V1 error format. */
2405
- '$.xgafv'?: string;
2567
+ '$.xgafv'?: '1' | '2';
2406
2568
  /** OAuth access token. */
2407
2569
  access_token?: string;
2408
2570
  /** Data format for response. */
2409
- alt?: string;
2571
+ alt?: 'json' | 'media' | 'proto';
2410
2572
  /** JSONP */
2411
2573
  callback?: string;
2412
2574
  /** 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) */
@@ -2437,11 +2599,11 @@ declare namespace gapi.client {
2437
2599
  /** 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
2600
  delete(request?: {
2439
2601
  /** V1 error format. */
2440
- '$.xgafv'?: string;
2602
+ '$.xgafv'?: '1' | '2';
2441
2603
  /** OAuth access token. */
2442
2604
  access_token?: string;
2443
2605
  /** Data format for response. */
2444
- alt?: string;
2606
+ alt?: 'json' | 'media' | 'proto';
2445
2607
  /** JSONP */
2446
2608
  callback?: string;
2447
2609
  /** Selector specifying which fields to include in a partial response. */
@@ -2466,11 +2628,11 @@ declare namespace gapi.client {
2466
2628
  /** Retrieves a `Cluster` resource by its resource name. */
2467
2629
  get(request?: {
2468
2630
  /** V1 error format. */
2469
- '$.xgafv'?: string;
2631
+ '$.xgafv'?: '1' | '2';
2470
2632
  /** OAuth access token. */
2471
2633
  access_token?: string;
2472
2634
  /** Data format for response. */
2473
- alt?: string;
2635
+ alt?: 'json' | 'media' | 'proto';
2474
2636
  /** JSONP */
2475
2637
  callback?: string;
2476
2638
  /** Selector specifying which fields to include in a partial response. */
@@ -2493,11 +2655,11 @@ declare namespace gapi.client {
2493
2655
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
2494
2656
  getIamPolicy(request?: {
2495
2657
  /** V1 error format. */
2496
- '$.xgafv'?: string;
2658
+ '$.xgafv'?: '1' | '2';
2497
2659
  /** OAuth access token. */
2498
2660
  access_token?: string;
2499
2661
  /** Data format for response. */
2500
- alt?: string;
2662
+ alt?: 'json' | 'media' | 'proto';
2501
2663
  /** JSONP */
2502
2664
  callback?: string;
2503
2665
  /** Selector specifying which fields to include in a partial response. */
@@ -2522,11 +2684,11 @@ declare namespace gapi.client {
2522
2684
  /** Lists `Cluster` resources in a given private cloud. */
2523
2685
  list(request?: {
2524
2686
  /** V1 error format. */
2525
- '$.xgafv'?: string;
2687
+ '$.xgafv'?: '1' | '2';
2526
2688
  /** OAuth access token. */
2527
2689
  access_token?: string;
2528
2690
  /** Data format for response. */
2529
- alt?: string;
2691
+ alt?: 'json' | 'media' | 'proto';
2530
2692
  /** JSONP */
2531
2693
  callback?: string;
2532
2694
  /** Selector specifying which fields to include in a partial response. */
@@ -2557,11 +2719,11 @@ declare namespace gapi.client {
2557
2719
  /** Mounts a `Datastore` on a cluster resource */
2558
2720
  mountDatastore(request: {
2559
2721
  /** V1 error format. */
2560
- '$.xgafv'?: string;
2722
+ '$.xgafv'?: '1' | '2';
2561
2723
  /** OAuth access token. */
2562
2724
  access_token?: string;
2563
2725
  /** Data format for response. */
2564
- alt?: string;
2726
+ alt?: 'json' | 'media' | 'proto';
2565
2727
  /** JSONP */
2566
2728
  callback?: string;
2567
2729
  /** Selector specifying which fields to include in a partial response. */
@@ -2586,11 +2748,11 @@ declare namespace gapi.client {
2586
2748
  mountDatastore(
2587
2749
  request: {
2588
2750
  /** V1 error format. */
2589
- '$.xgafv'?: string;
2751
+ '$.xgafv'?: '1' | '2';
2590
2752
  /** OAuth access token. */
2591
2753
  access_token?: string;
2592
2754
  /** Data format for response. */
2593
- alt?: string;
2755
+ alt?: 'json' | 'media' | 'proto';
2594
2756
  /** JSONP */
2595
2757
  callback?: string;
2596
2758
  /** Selector specifying which fields to include in a partial response. */
@@ -2615,11 +2777,11 @@ declare namespace gapi.client {
2615
2777
  /** 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
2778
  patch(request: {
2617
2779
  /** V1 error format. */
2618
- '$.xgafv'?: string;
2780
+ '$.xgafv'?: '1' | '2';
2619
2781
  /** OAuth access token. */
2620
2782
  access_token?: string;
2621
2783
  /** Data format for response. */
2622
- alt?: string;
2784
+ alt?: 'json' | 'media' | 'proto';
2623
2785
  /** JSONP */
2624
2786
  callback?: string;
2625
2787
  /** Selector specifying which fields to include in a partial response. */
@@ -2650,11 +2812,11 @@ declare namespace gapi.client {
2650
2812
  patch(
2651
2813
  request: {
2652
2814
  /** V1 error format. */
2653
- '$.xgafv'?: string;
2815
+ '$.xgafv'?: '1' | '2';
2654
2816
  /** OAuth access token. */
2655
2817
  access_token?: string;
2656
2818
  /** Data format for response. */
2657
- alt?: string;
2819
+ alt?: 'json' | 'media' | 'proto';
2658
2820
  /** JSONP */
2659
2821
  callback?: string;
2660
2822
  /** Selector specifying which fields to include in a partial response. */
@@ -2686,11 +2848,11 @@ declare namespace gapi.client {
2686
2848
  setIamPolicy(
2687
2849
  request: {
2688
2850
  /** V1 error format. */
2689
- '$.xgafv'?: string;
2851
+ '$.xgafv'?: '1' | '2';
2690
2852
  /** OAuth access token. */
2691
2853
  access_token?: string;
2692
2854
  /** Data format for response. */
2693
- alt?: string;
2855
+ alt?: 'json' | 'media' | 'proto';
2694
2856
  /** JSONP */
2695
2857
  callback?: string;
2696
2858
  /** Selector specifying which fields to include in a partial response. */
@@ -2716,11 +2878,11 @@ declare namespace gapi.client {
2716
2878
  testIamPermissions(
2717
2879
  request: {
2718
2880
  /** V1 error format. */
2719
- '$.xgafv'?: string;
2881
+ '$.xgafv'?: '1' | '2';
2720
2882
  /** OAuth access token. */
2721
2883
  access_token?: string;
2722
2884
  /** Data format for response. */
2723
- alt?: string;
2885
+ alt?: 'json' | 'media' | 'proto';
2724
2886
  /** JSONP */
2725
2887
  callback?: string;
2726
2888
  /** Selector specifying which fields to include in a partial response. */
@@ -2745,11 +2907,11 @@ declare namespace gapi.client {
2745
2907
  /** Unmounts a `Datastore` on a cluster resource */
2746
2908
  unmountDatastore(request: {
2747
2909
  /** V1 error format. */
2748
- '$.xgafv'?: string;
2910
+ '$.xgafv'?: '1' | '2';
2749
2911
  /** OAuth access token. */
2750
2912
  access_token?: string;
2751
2913
  /** Data format for response. */
2752
- alt?: string;
2914
+ alt?: 'json' | 'media' | 'proto';
2753
2915
  /** JSONP */
2754
2916
  callback?: string;
2755
2917
  /** Selector specifying which fields to include in a partial response. */
@@ -2774,11 +2936,11 @@ declare namespace gapi.client {
2774
2936
  unmountDatastore(
2775
2937
  request: {
2776
2938
  /** V1 error format. */
2777
- '$.xgafv'?: string;
2939
+ '$.xgafv'?: '1' | '2';
2778
2940
  /** OAuth access token. */
2779
2941
  access_token?: string;
2780
2942
  /** Data format for response. */
2781
- alt?: string;
2943
+ alt?: 'json' | 'media' | 'proto';
2782
2944
  /** JSONP */
2783
2945
  callback?: string;
2784
2946
  /** Selector specifying which fields to include in a partial response. */
@@ -2806,11 +2968,11 @@ declare namespace gapi.client {
2806
2968
  /** 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
2969
  create(request: {
2808
2970
  /** V1 error format. */
2809
- '$.xgafv'?: string;
2971
+ '$.xgafv'?: '1' | '2';
2810
2972
  /** OAuth access token. */
2811
2973
  access_token?: string;
2812
2974
  /** Data format for response. */
2813
- alt?: string;
2975
+ alt?: 'json' | 'media' | 'proto';
2814
2976
  /** JSONP */
2815
2977
  callback?: string;
2816
2978
  /** 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) */
@@ -2839,11 +3001,11 @@ declare namespace gapi.client {
2839
3001
  create(
2840
3002
  request: {
2841
3003
  /** V1 error format. */
2842
- '$.xgafv'?: string;
3004
+ '$.xgafv'?: '1' | '2';
2843
3005
  /** OAuth access token. */
2844
3006
  access_token?: string;
2845
3007
  /** Data format for response. */
2846
- alt?: string;
3008
+ alt?: 'json' | 'media' | 'proto';
2847
3009
  /** JSONP */
2848
3010
  callback?: string;
2849
3011
  /** 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) */
@@ -2872,11 +3034,11 @@ declare namespace gapi.client {
2872
3034
  /** 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
3035
  delete(request?: {
2874
3036
  /** V1 error format. */
2875
- '$.xgafv'?: string;
3037
+ '$.xgafv'?: '1' | '2';
2876
3038
  /** OAuth access token. */
2877
3039
  access_token?: string;
2878
3040
  /** Data format for response. */
2879
- alt?: string;
3041
+ alt?: 'json' | 'media' | 'proto';
2880
3042
  /** JSONP */
2881
3043
  callback?: string;
2882
3044
  /** Selector specifying which fields to include in a partial response. */
@@ -2901,11 +3063,11 @@ declare namespace gapi.client {
2901
3063
  /** Gets details of a single external IP address. */
2902
3064
  get(request?: {
2903
3065
  /** V1 error format. */
2904
- '$.xgafv'?: string;
3066
+ '$.xgafv'?: '1' | '2';
2905
3067
  /** OAuth access token. */
2906
3068
  access_token?: string;
2907
3069
  /** Data format for response. */
2908
- alt?: string;
3070
+ alt?: 'json' | 'media' | 'proto';
2909
3071
  /** JSONP */
2910
3072
  callback?: string;
2911
3073
  /** Selector specifying which fields to include in a partial response. */
@@ -2928,11 +3090,11 @@ declare namespace gapi.client {
2928
3090
  /** Lists external IP addresses assigned to VMware workload VMs in a given private cloud. */
2929
3091
  list(request?: {
2930
3092
  /** V1 error format. */
2931
- '$.xgafv'?: string;
3093
+ '$.xgafv'?: '1' | '2';
2932
3094
  /** OAuth access token. */
2933
3095
  access_token?: string;
2934
3096
  /** Data format for response. */
2935
- alt?: string;
3097
+ alt?: 'json' | 'media' | 'proto';
2936
3098
  /** JSONP */
2937
3099
  callback?: string;
2938
3100
  /** Selector specifying which fields to include in a partial response. */
@@ -2963,11 +3125,11 @@ declare namespace gapi.client {
2963
3125
  /** 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
3126
  patch(request: {
2965
3127
  /** V1 error format. */
2966
- '$.xgafv'?: string;
3128
+ '$.xgafv'?: '1' | '2';
2967
3129
  /** OAuth access token. */
2968
3130
  access_token?: string;
2969
3131
  /** Data format for response. */
2970
- alt?: string;
3132
+ alt?: 'json' | 'media' | 'proto';
2971
3133
  /** JSONP */
2972
3134
  callback?: string;
2973
3135
  /** Selector specifying which fields to include in a partial response. */
@@ -2996,11 +3158,11 @@ declare namespace gapi.client {
2996
3158
  patch(
2997
3159
  request: {
2998
3160
  /** V1 error format. */
2999
- '$.xgafv'?: string;
3161
+ '$.xgafv'?: '1' | '2';
3000
3162
  /** OAuth access token. */
3001
3163
  access_token?: string;
3002
3164
  /** Data format for response. */
3003
- alt?: string;
3165
+ alt?: 'json' | 'media' | 'proto';
3004
3166
  /** JSONP */
3005
3167
  callback?: string;
3006
3168
  /** Selector specifying which fields to include in a partial response. */
@@ -3031,11 +3193,11 @@ declare namespace gapi.client {
3031
3193
  /** Creates a new HCX activation key in a given private cloud. */
3032
3194
  create(request: {
3033
3195
  /** V1 error format. */
3034
- '$.xgafv'?: string;
3196
+ '$.xgafv'?: '1' | '2';
3035
3197
  /** OAuth access token. */
3036
3198
  access_token?: string;
3037
3199
  /** Data format for response. */
3038
- alt?: string;
3200
+ alt?: 'json' | 'media' | 'proto';
3039
3201
  /** JSONP */
3040
3202
  callback?: string;
3041
3203
  /** Selector specifying which fields to include in a partial response. */
@@ -3064,11 +3226,11 @@ declare namespace gapi.client {
3064
3226
  create(
3065
3227
  request: {
3066
3228
  /** V1 error format. */
3067
- '$.xgafv'?: string;
3229
+ '$.xgafv'?: '1' | '2';
3068
3230
  /** OAuth access token. */
3069
3231
  access_token?: string;
3070
3232
  /** Data format for response. */
3071
- alt?: string;
3233
+ alt?: 'json' | 'media' | 'proto';
3072
3234
  /** JSONP */
3073
3235
  callback?: string;
3074
3236
  /** Selector specifying which fields to include in a partial response. */
@@ -3097,11 +3259,11 @@ declare namespace gapi.client {
3097
3259
  /** Retrieves a `HcxActivationKey` resource by its resource name. */
3098
3260
  get(request?: {
3099
3261
  /** V1 error format. */
3100
- '$.xgafv'?: string;
3262
+ '$.xgafv'?: '1' | '2';
3101
3263
  /** OAuth access token. */
3102
3264
  access_token?: string;
3103
3265
  /** Data format for response. */
3104
- alt?: string;
3266
+ alt?: 'json' | 'media' | 'proto';
3105
3267
  /** JSONP */
3106
3268
  callback?: string;
3107
3269
  /** Selector specifying which fields to include in a partial response. */
@@ -3124,11 +3286,11 @@ declare namespace gapi.client {
3124
3286
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
3125
3287
  getIamPolicy(request?: {
3126
3288
  /** V1 error format. */
3127
- '$.xgafv'?: string;
3289
+ '$.xgafv'?: '1' | '2';
3128
3290
  /** OAuth access token. */
3129
3291
  access_token?: string;
3130
3292
  /** Data format for response. */
3131
- alt?: string;
3293
+ alt?: 'json' | 'media' | 'proto';
3132
3294
  /** JSONP */
3133
3295
  callback?: string;
3134
3296
  /** Selector specifying which fields to include in a partial response. */
@@ -3153,11 +3315,11 @@ declare namespace gapi.client {
3153
3315
  /** Lists `HcxActivationKey` resources in a given private cloud. */
3154
3316
  list(request?: {
3155
3317
  /** V1 error format. */
3156
- '$.xgafv'?: string;
3318
+ '$.xgafv'?: '1' | '2';
3157
3319
  /** OAuth access token. */
3158
3320
  access_token?: string;
3159
3321
  /** Data format for response. */
3160
- alt?: string;
3322
+ alt?: 'json' | 'media' | 'proto';
3161
3323
  /** JSONP */
3162
3324
  callback?: string;
3163
3325
  /** Selector specifying which fields to include in a partial response. */
@@ -3185,11 +3347,11 @@ declare namespace gapi.client {
3185
3347
  setIamPolicy(
3186
3348
  request: {
3187
3349
  /** V1 error format. */
3188
- '$.xgafv'?: string;
3350
+ '$.xgafv'?: '1' | '2';
3189
3351
  /** OAuth access token. */
3190
3352
  access_token?: string;
3191
3353
  /** Data format for response. */
3192
- alt?: string;
3354
+ alt?: 'json' | 'media' | 'proto';
3193
3355
  /** JSONP */
3194
3356
  callback?: string;
3195
3357
  /** Selector specifying which fields to include in a partial response. */
@@ -3215,11 +3377,11 @@ declare namespace gapi.client {
3215
3377
  testIamPermissions(
3216
3378
  request: {
3217
3379
  /** V1 error format. */
3218
- '$.xgafv'?: string;
3380
+ '$.xgafv'?: '1' | '2';
3219
3381
  /** OAuth access token. */
3220
3382
  access_token?: string;
3221
3383
  /** Data format for response. */
3222
- alt?: string;
3384
+ alt?: 'json' | 'media' | 'proto';
3223
3385
  /** JSONP */
3224
3386
  callback?: string;
3225
3387
  /** Selector specifying which fields to include in a partial response. */
@@ -3246,11 +3408,11 @@ declare namespace gapi.client {
3246
3408
  /** Create a new logging server for a given private cloud. */
3247
3409
  create(request: {
3248
3410
  /** V1 error format. */
3249
- '$.xgafv'?: string;
3411
+ '$.xgafv'?: '1' | '2';
3250
3412
  /** OAuth access token. */
3251
3413
  access_token?: string;
3252
3414
  /** Data format for response. */
3253
- alt?: string;
3415
+ alt?: 'json' | 'media' | 'proto';
3254
3416
  /** JSONP */
3255
3417
  callback?: string;
3256
3418
  /** Selector specifying which fields to include in a partial response. */
@@ -3279,11 +3441,11 @@ declare namespace gapi.client {
3279
3441
  create(
3280
3442
  request: {
3281
3443
  /** V1 error format. */
3282
- '$.xgafv'?: string;
3444
+ '$.xgafv'?: '1' | '2';
3283
3445
  /** OAuth access token. */
3284
3446
  access_token?: string;
3285
3447
  /** Data format for response. */
3286
- alt?: string;
3448
+ alt?: 'json' | 'media' | 'proto';
3287
3449
  /** JSONP */
3288
3450
  callback?: string;
3289
3451
  /** Selector specifying which fields to include in a partial response. */
@@ -3312,11 +3474,11 @@ declare namespace gapi.client {
3312
3474
  /** Deletes a single logging server. */
3313
3475
  delete(request?: {
3314
3476
  /** V1 error format. */
3315
- '$.xgafv'?: string;
3477
+ '$.xgafv'?: '1' | '2';
3316
3478
  /** OAuth access token. */
3317
3479
  access_token?: string;
3318
3480
  /** Data format for response. */
3319
- alt?: string;
3481
+ alt?: 'json' | 'media' | 'proto';
3320
3482
  /** JSONP */
3321
3483
  callback?: string;
3322
3484
  /** Selector specifying which fields to include in a partial response. */
@@ -3341,11 +3503,11 @@ declare namespace gapi.client {
3341
3503
  /** Gets details of a logging server. */
3342
3504
  get(request?: {
3343
3505
  /** V1 error format. */
3344
- '$.xgafv'?: string;
3506
+ '$.xgafv'?: '1' | '2';
3345
3507
  /** OAuth access token. */
3346
3508
  access_token?: string;
3347
3509
  /** Data format for response. */
3348
- alt?: string;
3510
+ alt?: 'json' | 'media' | 'proto';
3349
3511
  /** JSONP */
3350
3512
  callback?: string;
3351
3513
  /** Selector specifying which fields to include in a partial response. */
@@ -3368,11 +3530,11 @@ declare namespace gapi.client {
3368
3530
  /** Lists logging servers configured for a given private cloud. */
3369
3531
  list(request?: {
3370
3532
  /** V1 error format. */
3371
- '$.xgafv'?: string;
3533
+ '$.xgafv'?: '1' | '2';
3372
3534
  /** OAuth access token. */
3373
3535
  access_token?: string;
3374
3536
  /** Data format for response. */
3375
- alt?: string;
3537
+ alt?: 'json' | 'media' | 'proto';
3376
3538
  /** JSONP */
3377
3539
  callback?: string;
3378
3540
  /** Selector specifying which fields to include in a partial response. */
@@ -3403,11 +3565,11 @@ declare namespace gapi.client {
3403
3565
  /** Updates the parameters of a single logging server. Only fields specified in `update_mask` are applied. */
3404
3566
  patch(request: {
3405
3567
  /** V1 error format. */
3406
- '$.xgafv'?: string;
3568
+ '$.xgafv'?: '1' | '2';
3407
3569
  /** OAuth access token. */
3408
3570
  access_token?: string;
3409
3571
  /** Data format for response. */
3410
- alt?: string;
3572
+ alt?: 'json' | 'media' | 'proto';
3411
3573
  /** JSONP */
3412
3574
  callback?: string;
3413
3575
  /** Selector specifying which fields to include in a partial response. */
@@ -3436,11 +3598,11 @@ declare namespace gapi.client {
3436
3598
  patch(
3437
3599
  request: {
3438
3600
  /** V1 error format. */
3439
- '$.xgafv'?: string;
3601
+ '$.xgafv'?: '1' | '2';
3440
3602
  /** OAuth access token. */
3441
3603
  access_token?: string;
3442
3604
  /** Data format for response. */
3443
- alt?: string;
3605
+ alt?: 'json' | 'media' | 'proto';
3444
3606
  /** JSONP */
3445
3607
  callback?: string;
3446
3608
  /** Selector specifying which fields to include in a partial response. */
@@ -3471,11 +3633,11 @@ declare namespace gapi.client {
3471
3633
  /** 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
3634
  create(request: {
3473
3635
  /** V1 error format. */
3474
- '$.xgafv'?: string;
3636
+ '$.xgafv'?: '1' | '2';
3475
3637
  /** OAuth access token. */
3476
3638
  access_token?: string;
3477
3639
  /** Data format for response. */
3478
- alt?: string;
3640
+ alt?: 'json' | 'media' | 'proto';
3479
3641
  /** JSONP */
3480
3642
  callback?: string;
3481
3643
  /** Selector specifying which fields to include in a partial response. */
@@ -3504,11 +3666,11 @@ declare namespace gapi.client {
3504
3666
  create(
3505
3667
  request: {
3506
3668
  /** V1 error format. */
3507
- '$.xgafv'?: string;
3669
+ '$.xgafv'?: '1' | '2';
3508
3670
  /** OAuth access token. */
3509
3671
  access_token?: string;
3510
3672
  /** Data format for response. */
3511
- alt?: string;
3673
+ alt?: 'json' | 'media' | 'proto';
3512
3674
  /** JSONP */
3513
3675
  callback?: string;
3514
3676
  /** Selector specifying which fields to include in a partial response. */
@@ -3537,11 +3699,11 @@ declare namespace gapi.client {
3537
3699
  /** 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
3700
  delete(request?: {
3539
3701
  /** V1 error format. */
3540
- '$.xgafv'?: string;
3702
+ '$.xgafv'?: '1' | '2';
3541
3703
  /** OAuth access token. */
3542
3704
  access_token?: string;
3543
3705
  /** Data format for response. */
3544
- alt?: string;
3706
+ alt?: 'json' | 'media' | 'proto';
3545
3707
  /** JSONP */
3546
3708
  callback?: string;
3547
3709
  /** Selector specifying which fields to include in a partial response. */
@@ -3566,11 +3728,11 @@ declare namespace gapi.client {
3566
3728
  /** Retrieves a 'ManagementDnsZoneBinding' resource by its resource name. */
3567
3729
  get(request?: {
3568
3730
  /** V1 error format. */
3569
- '$.xgafv'?: string;
3731
+ '$.xgafv'?: '1' | '2';
3570
3732
  /** OAuth access token. */
3571
3733
  access_token?: string;
3572
3734
  /** Data format for response. */
3573
- alt?: string;
3735
+ alt?: 'json' | 'media' | 'proto';
3574
3736
  /** JSONP */
3575
3737
  callback?: string;
3576
3738
  /** Selector specifying which fields to include in a partial response. */
@@ -3593,11 +3755,11 @@ declare namespace gapi.client {
3593
3755
  /** Lists Consumer VPCs bound to Management DNS Zone of a given private cloud. */
3594
3756
  list(request?: {
3595
3757
  /** V1 error format. */
3596
- '$.xgafv'?: string;
3758
+ '$.xgafv'?: '1' | '2';
3597
3759
  /** OAuth access token. */
3598
3760
  access_token?: string;
3599
3761
  /** Data format for response. */
3600
- alt?: string;
3762
+ alt?: 'json' | 'media' | 'proto';
3601
3763
  /** JSONP */
3602
3764
  callback?: string;
3603
3765
  /** Selector specifying which fields to include in a partial response. */
@@ -3628,11 +3790,11 @@ declare namespace gapi.client {
3628
3790
  /** Updates a `ManagementDnsZoneBinding` resource. Only fields specified in `update_mask` are applied. */
3629
3791
  patch(request: {
3630
3792
  /** V1 error format. */
3631
- '$.xgafv'?: string;
3793
+ '$.xgafv'?: '1' | '2';
3632
3794
  /** OAuth access token. */
3633
3795
  access_token?: string;
3634
3796
  /** Data format for response. */
3635
- alt?: string;
3797
+ alt?: 'json' | 'media' | 'proto';
3636
3798
  /** JSONP */
3637
3799
  callback?: string;
3638
3800
  /** Selector specifying which fields to include in a partial response. */
@@ -3661,11 +3823,11 @@ declare namespace gapi.client {
3661
3823
  patch(
3662
3824
  request: {
3663
3825
  /** V1 error format. */
3664
- '$.xgafv'?: string;
3826
+ '$.xgafv'?: '1' | '2';
3665
3827
  /** OAuth access token. */
3666
3828
  access_token?: string;
3667
3829
  /** Data format for response. */
3668
- alt?: string;
3830
+ alt?: 'json' | 'media' | 'proto';
3669
3831
  /** JSONP */
3670
3832
  callback?: string;
3671
3833
  /** Selector specifying which fields to include in a partial response. */
@@ -3694,11 +3856,11 @@ declare namespace gapi.client {
3694
3856
  /** Retries to create a `ManagementDnsZoneBinding` resource that is in failed state. */
3695
3857
  repair(request: {
3696
3858
  /** V1 error format. */
3697
- '$.xgafv'?: string;
3859
+ '$.xgafv'?: '1' | '2';
3698
3860
  /** OAuth access token. */
3699
3861
  access_token?: string;
3700
3862
  /** Data format for response. */
3701
- alt?: string;
3863
+ alt?: 'json' | 'media' | 'proto';
3702
3864
  /** JSONP */
3703
3865
  callback?: string;
3704
3866
  /** Selector specifying which fields to include in a partial response. */
@@ -3723,11 +3885,11 @@ declare namespace gapi.client {
3723
3885
  repair(
3724
3886
  request: {
3725
3887
  /** V1 error format. */
3726
- '$.xgafv'?: string;
3888
+ '$.xgafv'?: '1' | '2';
3727
3889
  /** OAuth access token. */
3728
3890
  access_token?: string;
3729
3891
  /** Data format for response. */
3730
- alt?: string;
3892
+ alt?: 'json' | 'media' | 'proto';
3731
3893
  /** JSONP */
3732
3894
  callback?: string;
3733
3895
  /** Selector specifying which fields to include in a partial response. */
@@ -3754,11 +3916,11 @@ declare namespace gapi.client {
3754
3916
  /** Gets details of a single subnet. */
3755
3917
  get(request?: {
3756
3918
  /** V1 error format. */
3757
- '$.xgafv'?: string;
3919
+ '$.xgafv'?: '1' | '2';
3758
3920
  /** OAuth access token. */
3759
3921
  access_token?: string;
3760
3922
  /** Data format for response. */
3761
- alt?: string;
3923
+ alt?: 'json' | 'media' | 'proto';
3762
3924
  /** JSONP */
3763
3925
  callback?: string;
3764
3926
  /** Selector specifying which fields to include in a partial response. */
@@ -3781,11 +3943,11 @@ declare namespace gapi.client {
3781
3943
  /** Lists subnets in a given private cloud. */
3782
3944
  list(request?: {
3783
3945
  /** V1 error format. */
3784
- '$.xgafv'?: string;
3946
+ '$.xgafv'?: '1' | '2';
3785
3947
  /** OAuth access token. */
3786
3948
  access_token?: string;
3787
3949
  /** Data format for response. */
3788
- alt?: string;
3950
+ alt?: 'json' | 'media' | 'proto';
3789
3951
  /** JSONP */
3790
3952
  callback?: string;
3791
3953
  /** Selector specifying which fields to include in a partial response. */
@@ -3812,11 +3974,11 @@ declare namespace gapi.client {
3812
3974
  /** 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
3975
  patch(request: {
3814
3976
  /** V1 error format. */
3815
- '$.xgafv'?: string;
3977
+ '$.xgafv'?: '1' | '2';
3816
3978
  /** OAuth access token. */
3817
3979
  access_token?: string;
3818
3980
  /** Data format for response. */
3819
- alt?: string;
3981
+ alt?: 'json' | 'media' | 'proto';
3820
3982
  /** JSONP */
3821
3983
  callback?: string;
3822
3984
  /** Selector specifying which fields to include in a partial response. */
@@ -3843,11 +4005,11 @@ declare namespace gapi.client {
3843
4005
  patch(
3844
4006
  request: {
3845
4007
  /** V1 error format. */
3846
- '$.xgafv'?: string;
4008
+ '$.xgafv'?: '1' | '2';
3847
4009
  /** OAuth access token. */
3848
4010
  access_token?: string;
3849
4011
  /** Data format for response. */
3850
- alt?: string;
4012
+ alt?: 'json' | 'media' | 'proto';
3851
4013
  /** JSONP */
3852
4014
  callback?: string;
3853
4015
  /** Selector specifying which fields to include in a partial response. */
@@ -3876,11 +4038,11 @@ declare namespace gapi.client {
3876
4038
  /** Retrieves a private cloud `Upgrade` resource by its resource name. */
3877
4039
  get(request?: {
3878
4040
  /** V1 error format. */
3879
- '$.xgafv'?: string;
4041
+ '$.xgafv'?: '1' | '2';
3880
4042
  /** OAuth access token. */
3881
4043
  access_token?: string;
3882
4044
  /** Data format for response. */
3883
- alt?: string;
4045
+ alt?: 'json' | 'media' | 'proto';
3884
4046
  /** JSONP */
3885
4047
  callback?: string;
3886
4048
  /** Selector specifying which fields to include in a partial response. */
@@ -3903,11 +4065,11 @@ declare namespace gapi.client {
3903
4065
  /** Lists past, ongoing and upcoming `Upgrades` for the given private cloud. */
3904
4066
  list(request?: {
3905
4067
  /** V1 error format. */
3906
- '$.xgafv'?: string;
4068
+ '$.xgafv'?: '1' | '2';
3907
4069
  /** OAuth access token. */
3908
4070
  access_token?: string;
3909
4071
  /** Data format for response. */
3910
- alt?: string;
4072
+ alt?: 'json' | 'media' | 'proto';
3911
4073
  /** JSONP */
3912
4074
  callback?: string;
3913
4075
  /** Selector specifying which fields to include in a partial response. */
@@ -3938,11 +4100,11 @@ declare namespace gapi.client {
3938
4100
  /** 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
4101
  patch(request: {
3940
4102
  /** V1 error format. */
3941
- '$.xgafv'?: string;
4103
+ '$.xgafv'?: '1' | '2';
3942
4104
  /** OAuth access token. */
3943
4105
  access_token?: string;
3944
4106
  /** Data format for response. */
3945
- alt?: string;
4107
+ alt?: 'json' | 'media' | 'proto';
3946
4108
  /** JSONP */
3947
4109
  callback?: string;
3948
4110
  /** Selector specifying which fields to include in a partial response. */
@@ -3971,11 +4133,11 @@ declare namespace gapi.client {
3971
4133
  patch(
3972
4134
  request: {
3973
4135
  /** V1 error format. */
3974
- '$.xgafv'?: string;
4136
+ '$.xgafv'?: '1' | '2';
3975
4137
  /** OAuth access token. */
3976
4138
  access_token?: string;
3977
4139
  /** Data format for response. */
3978
- alt?: string;
4140
+ alt?: 'json' | 'media' | 'proto';
3979
4141
  /** JSONP */
3980
4142
  callback?: string;
3981
4143
  /** Selector specifying which fields to include in a partial response. */
@@ -4006,11 +4168,11 @@ declare namespace gapi.client {
4006
4168
  /** 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
4169
  create(request: {
4008
4170
  /** V1 error format. */
4009
- '$.xgafv'?: string;
4171
+ '$.xgafv'?: '1' | '2';
4010
4172
  /** OAuth access token. */
4011
4173
  access_token?: string;
4012
4174
  /** Data format for response. */
4013
- alt?: string;
4175
+ alt?: 'json' | 'media' | 'proto';
4014
4176
  /** JSONP */
4015
4177
  callback?: string;
4016
4178
  /** Selector specifying which fields to include in a partial response. */
@@ -4041,11 +4203,11 @@ declare namespace gapi.client {
4041
4203
  create(
4042
4204
  request: {
4043
4205
  /** V1 error format. */
4044
- '$.xgafv'?: string;
4206
+ '$.xgafv'?: '1' | '2';
4045
4207
  /** OAuth access token. */
4046
4208
  access_token?: string;
4047
4209
  /** Data format for response. */
4048
- alt?: string;
4210
+ alt?: 'json' | 'media' | 'proto';
4049
4211
  /** JSONP */
4050
4212
  callback?: string;
4051
4213
  /** Selector specifying which fields to include in a partial response. */
@@ -4076,11 +4238,11 @@ declare namespace gapi.client {
4076
4238
  /** 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
4239
  delete(request?: {
4078
4240
  /** V1 error format. */
4079
- '$.xgafv'?: string;
4241
+ '$.xgafv'?: '1' | '2';
4080
4242
  /** OAuth access token. */
4081
4243
  access_token?: string;
4082
4244
  /** Data format for response. */
4083
- alt?: string;
4245
+ alt?: 'json' | 'media' | 'proto';
4084
4246
  /** JSONP */
4085
4247
  callback?: string;
4086
4248
  /** 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 +4271,11 @@ declare namespace gapi.client {
4109
4271
  /** Retrieves a `PrivateCloud` resource by its resource name. */
4110
4272
  get(request?: {
4111
4273
  /** V1 error format. */
4112
- '$.xgafv'?: string;
4274
+ '$.xgafv'?: '1' | '2';
4113
4275
  /** OAuth access token. */
4114
4276
  access_token?: string;
4115
4277
  /** Data format for response. */
4116
- alt?: string;
4278
+ alt?: 'json' | 'media' | 'proto';
4117
4279
  /** JSONP */
4118
4280
  callback?: string;
4119
4281
  /** Selector specifying which fields to include in a partial response. */
@@ -4136,11 +4298,11 @@ declare namespace gapi.client {
4136
4298
  /** Gets details of the `DnsForwarding` config. */
4137
4299
  getDnsForwarding(request?: {
4138
4300
  /** V1 error format. */
4139
- '$.xgafv'?: string;
4301
+ '$.xgafv'?: '1' | '2';
4140
4302
  /** OAuth access token. */
4141
4303
  access_token?: string;
4142
4304
  /** Data format for response. */
4143
- alt?: string;
4305
+ alt?: 'json' | 'media' | 'proto';
4144
4306
  /** JSONP */
4145
4307
  callback?: string;
4146
4308
  /** Selector specifying which fields to include in a partial response. */
@@ -4163,11 +4325,11 @@ declare namespace gapi.client {
4163
4325
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
4164
4326
  getIamPolicy(request?: {
4165
4327
  /** V1 error format. */
4166
- '$.xgafv'?: string;
4328
+ '$.xgafv'?: '1' | '2';
4167
4329
  /** OAuth access token. */
4168
4330
  access_token?: string;
4169
4331
  /** Data format for response. */
4170
- alt?: string;
4332
+ alt?: 'json' | 'media' | 'proto';
4171
4333
  /** JSONP */
4172
4334
  callback?: string;
4173
4335
  /** Selector specifying which fields to include in a partial response. */
@@ -4192,11 +4354,11 @@ declare namespace gapi.client {
4192
4354
  /** Lists `PrivateCloud` resources in a given project and location. */
4193
4355
  list(request?: {
4194
4356
  /** V1 error format. */
4195
- '$.xgafv'?: string;
4357
+ '$.xgafv'?: '1' | '2';
4196
4358
  /** OAuth access token. */
4197
4359
  access_token?: string;
4198
4360
  /** Data format for response. */
4199
- alt?: string;
4361
+ alt?: 'json' | 'media' | 'proto';
4200
4362
  /** JSONP */
4201
4363
  callback?: string;
4202
4364
  /** Selector specifying which fields to include in a partial response. */
@@ -4227,11 +4389,11 @@ declare namespace gapi.client {
4227
4389
  /** 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
4390
  patch(request: {
4229
4391
  /** V1 error format. */
4230
- '$.xgafv'?: string;
4392
+ '$.xgafv'?: '1' | '2';
4231
4393
  /** OAuth access token. */
4232
4394
  access_token?: string;
4233
4395
  /** Data format for response. */
4234
- alt?: string;
4396
+ alt?: 'json' | 'media' | 'proto';
4235
4397
  /** JSONP */
4236
4398
  callback?: string;
4237
4399
  /** Selector specifying which fields to include in a partial response. */
@@ -4260,11 +4422,11 @@ declare namespace gapi.client {
4260
4422
  patch(
4261
4423
  request: {
4262
4424
  /** V1 error format. */
4263
- '$.xgafv'?: string;
4425
+ '$.xgafv'?: '1' | '2';
4264
4426
  /** OAuth access token. */
4265
4427
  access_token?: string;
4266
4428
  /** Data format for response. */
4267
- alt?: string;
4429
+ alt?: 'json' | 'media' | 'proto';
4268
4430
  /** JSONP */
4269
4431
  callback?: string;
4270
4432
  /** Selector specifying which fields to include in a partial response. */
@@ -4293,11 +4455,11 @@ declare namespace gapi.client {
4293
4455
  /** 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
4456
  privateCloudDeletionNow(request: {
4295
4457
  /** V1 error format. */
4296
- '$.xgafv'?: string;
4458
+ '$.xgafv'?: '1' | '2';
4297
4459
  /** OAuth access token. */
4298
4460
  access_token?: string;
4299
4461
  /** Data format for response. */
4300
- alt?: string;
4462
+ alt?: 'json' | 'media' | 'proto';
4301
4463
  /** JSONP */
4302
4464
  callback?: string;
4303
4465
  /** Selector specifying which fields to include in a partial response. */
@@ -4322,11 +4484,11 @@ declare namespace gapi.client {
4322
4484
  privateCloudDeletionNow(
4323
4485
  request: {
4324
4486
  /** V1 error format. */
4325
- '$.xgafv'?: string;
4487
+ '$.xgafv'?: '1' | '2';
4326
4488
  /** OAuth access token. */
4327
4489
  access_token?: string;
4328
4490
  /** Data format for response. */
4329
- alt?: string;
4491
+ alt?: 'json' | 'media' | 'proto';
4330
4492
  /** JSONP */
4331
4493
  callback?: string;
4332
4494
  /** Selector specifying which fields to include in a partial response. */
@@ -4351,11 +4513,11 @@ declare namespace gapi.client {
4351
4513
  /** Resets credentials of the NSX appliance. */
4352
4514
  resetNsxCredentials(request: {
4353
4515
  /** V1 error format. */
4354
- '$.xgafv'?: string;
4516
+ '$.xgafv'?: '1' | '2';
4355
4517
  /** OAuth access token. */
4356
4518
  access_token?: string;
4357
4519
  /** Data format for response. */
4358
- alt?: string;
4520
+ alt?: 'json' | 'media' | 'proto';
4359
4521
  /** JSONP */
4360
4522
  callback?: string;
4361
4523
  /** Selector specifying which fields to include in a partial response. */
@@ -4380,11 +4542,11 @@ declare namespace gapi.client {
4380
4542
  resetNsxCredentials(
4381
4543
  request: {
4382
4544
  /** V1 error format. */
4383
- '$.xgafv'?: string;
4545
+ '$.xgafv'?: '1' | '2';
4384
4546
  /** OAuth access token. */
4385
4547
  access_token?: string;
4386
4548
  /** Data format for response. */
4387
- alt?: string;
4549
+ alt?: 'json' | 'media' | 'proto';
4388
4550
  /** JSONP */
4389
4551
  callback?: string;
4390
4552
  /** Selector specifying which fields to include in a partial response. */
@@ -4409,11 +4571,11 @@ declare namespace gapi.client {
4409
4571
  /** Resets credentials of the Vcenter appliance. */
4410
4572
  resetVcenterCredentials(request: {
4411
4573
  /** V1 error format. */
4412
- '$.xgafv'?: string;
4574
+ '$.xgafv'?: '1' | '2';
4413
4575
  /** OAuth access token. */
4414
4576
  access_token?: string;
4415
4577
  /** Data format for response. */
4416
- alt?: string;
4578
+ alt?: 'json' | 'media' | 'proto';
4417
4579
  /** JSONP */
4418
4580
  callback?: string;
4419
4581
  /** Selector specifying which fields to include in a partial response. */
@@ -4438,11 +4600,11 @@ declare namespace gapi.client {
4438
4600
  resetVcenterCredentials(
4439
4601
  request: {
4440
4602
  /** V1 error format. */
4441
- '$.xgafv'?: string;
4603
+ '$.xgafv'?: '1' | '2';
4442
4604
  /** OAuth access token. */
4443
4605
  access_token?: string;
4444
4606
  /** Data format for response. */
4445
- alt?: string;
4607
+ alt?: 'json' | 'media' | 'proto';
4446
4608
  /** JSONP */
4447
4609
  callback?: string;
4448
4610
  /** Selector specifying which fields to include in a partial response. */
@@ -4468,11 +4630,11 @@ declare namespace gapi.client {
4468
4630
  setIamPolicy(
4469
4631
  request: {
4470
4632
  /** V1 error format. */
4471
- '$.xgafv'?: string;
4633
+ '$.xgafv'?: '1' | '2';
4472
4634
  /** OAuth access token. */
4473
4635
  access_token?: string;
4474
4636
  /** Data format for response. */
4475
- alt?: string;
4637
+ alt?: 'json' | 'media' | 'proto';
4476
4638
  /** JSONP */
4477
4639
  callback?: string;
4478
4640
  /** Selector specifying which fields to include in a partial response. */
@@ -4497,11 +4659,11 @@ declare namespace gapi.client {
4497
4659
  /** Gets details of credentials for NSX appliance. */
4498
4660
  showNsxCredentials(request?: {
4499
4661
  /** V1 error format. */
4500
- '$.xgafv'?: string;
4662
+ '$.xgafv'?: '1' | '2';
4501
4663
  /** OAuth access token. */
4502
4664
  access_token?: string;
4503
4665
  /** Data format for response. */
4504
- alt?: string;
4666
+ alt?: 'json' | 'media' | 'proto';
4505
4667
  /** JSONP */
4506
4668
  callback?: string;
4507
4669
  /** Selector specifying which fields to include in a partial response. */
@@ -4524,11 +4686,11 @@ declare namespace gapi.client {
4524
4686
  /** Gets details of credentials for Vcenter appliance. */
4525
4687
  showVcenterCredentials(request?: {
4526
4688
  /** V1 error format. */
4527
- '$.xgafv'?: string;
4689
+ '$.xgafv'?: '1' | '2';
4528
4690
  /** OAuth access token. */
4529
4691
  access_token?: string;
4530
4692
  /** Data format for response. */
4531
- alt?: string;
4693
+ alt?: 'json' | 'media' | 'proto';
4532
4694
  /** JSONP */
4533
4695
  callback?: string;
4534
4696
  /** Selector specifying which fields to include in a partial response. */
@@ -4554,11 +4716,11 @@ declare namespace gapi.client {
4554
4716
  testIamPermissions(
4555
4717
  request: {
4556
4718
  /** V1 error format. */
4557
- '$.xgafv'?: string;
4719
+ '$.xgafv'?: '1' | '2';
4558
4720
  /** OAuth access token. */
4559
4721
  access_token?: string;
4560
4722
  /** Data format for response. */
4561
- alt?: string;
4723
+ alt?: 'json' | 'media' | 'proto';
4562
4724
  /** JSONP */
4563
4725
  callback?: string;
4564
4726
  /** Selector specifying which fields to include in a partial response. */
@@ -4583,11 +4745,11 @@ declare namespace gapi.client {
4583
4745
  /** 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
4746
  undelete(request: {
4585
4747
  /** V1 error format. */
4586
- '$.xgafv'?: string;
4748
+ '$.xgafv'?: '1' | '2';
4587
4749
  /** OAuth access token. */
4588
4750
  access_token?: string;
4589
4751
  /** Data format for response. */
4590
- alt?: string;
4752
+ alt?: 'json' | 'media' | 'proto';
4591
4753
  /** JSONP */
4592
4754
  callback?: string;
4593
4755
  /** Selector specifying which fields to include in a partial response. */
@@ -4612,11 +4774,11 @@ declare namespace gapi.client {
4612
4774
  undelete(
4613
4775
  request: {
4614
4776
  /** V1 error format. */
4615
- '$.xgafv'?: string;
4777
+ '$.xgafv'?: '1' | '2';
4616
4778
  /** OAuth access token. */
4617
4779
  access_token?: string;
4618
4780
  /** Data format for response. */
4619
- alt?: string;
4781
+ alt?: 'json' | 'media' | 'proto';
4620
4782
  /** JSONP */
4621
4783
  callback?: string;
4622
4784
  /** Selector specifying which fields to include in a partial response. */
@@ -4641,11 +4803,11 @@ declare namespace gapi.client {
4641
4803
  /** Updates the parameters of the `DnsForwarding` config, like associated domains. Only fields specified in `update_mask` are applied. */
4642
4804
  updateDnsForwarding(request: {
4643
4805
  /** V1 error format. */
4644
- '$.xgafv'?: string;
4806
+ '$.xgafv'?: '1' | '2';
4645
4807
  /** OAuth access token. */
4646
4808
  access_token?: string;
4647
4809
  /** Data format for response. */
4648
- alt?: string;
4810
+ alt?: 'json' | 'media' | 'proto';
4649
4811
  /** JSONP */
4650
4812
  callback?: string;
4651
4813
  /** Selector specifying which fields to include in a partial response. */
@@ -4674,11 +4836,11 @@ declare namespace gapi.client {
4674
4836
  updateDnsForwarding(
4675
4837
  request: {
4676
4838
  /** V1 error format. */
4677
- '$.xgafv'?: string;
4839
+ '$.xgafv'?: '1' | '2';
4678
4840
  /** OAuth access token. */
4679
4841
  access_token?: string;
4680
4842
  /** Data format for response. */
4681
- alt?: string;
4843
+ alt?: 'json' | 'media' | 'proto';
4682
4844
  /** JSONP */
4683
4845
  callback?: string;
4684
4846
  /** Selector specifying which fields to include in a partial response. */
@@ -4716,11 +4878,11 @@ declare namespace gapi.client {
4716
4878
  /** Lists the private connection routes exchanged over a peering connection. */
4717
4879
  list(request?: {
4718
4880
  /** V1 error format. */
4719
- '$.xgafv'?: string;
4881
+ '$.xgafv'?: '1' | '2';
4720
4882
  /** OAuth access token. */
4721
4883
  access_token?: string;
4722
4884
  /** Data format for response. */
4723
- alt?: string;
4885
+ alt?: 'json' | 'media' | 'proto';
4724
4886
  /** JSONP */
4725
4887
  callback?: string;
4726
4888
  /** Selector specifying which fields to include in a partial response. */
@@ -4749,11 +4911,11 @@ declare namespace gapi.client {
4749
4911
  /** Creates a new private connection that can be used for accessing private Clouds. */
4750
4912
  create(request: {
4751
4913
  /** V1 error format. */
4752
- '$.xgafv'?: string;
4914
+ '$.xgafv'?: '1' | '2';
4753
4915
  /** OAuth access token. */
4754
4916
  access_token?: string;
4755
4917
  /** Data format for response. */
4756
- alt?: string;
4918
+ alt?: 'json' | 'media' | 'proto';
4757
4919
  /** JSONP */
4758
4920
  callback?: string;
4759
4921
  /** Selector specifying which fields to include in a partial response. */
@@ -4782,11 +4944,11 @@ declare namespace gapi.client {
4782
4944
  create(
4783
4945
  request: {
4784
4946
  /** V1 error format. */
4785
- '$.xgafv'?: string;
4947
+ '$.xgafv'?: '1' | '2';
4786
4948
  /** OAuth access token. */
4787
4949
  access_token?: string;
4788
4950
  /** Data format for response. */
4789
- alt?: string;
4951
+ alt?: 'json' | 'media' | 'proto';
4790
4952
  /** JSONP */
4791
4953
  callback?: string;
4792
4954
  /** Selector specifying which fields to include in a partial response. */
@@ -4815,11 +4977,11 @@ declare namespace gapi.client {
4815
4977
  /** 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
4978
  delete(request?: {
4817
4979
  /** V1 error format. */
4818
- '$.xgafv'?: string;
4980
+ '$.xgafv'?: '1' | '2';
4819
4981
  /** OAuth access token. */
4820
4982
  access_token?: string;
4821
4983
  /** Data format for response. */
4822
- alt?: string;
4984
+ alt?: 'json' | 'media' | 'proto';
4823
4985
  /** JSONP */
4824
4986
  callback?: string;
4825
4987
  /** Selector specifying which fields to include in a partial response. */
@@ -4844,11 +5006,11 @@ declare namespace gapi.client {
4844
5006
  /** 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
5007
  get(request?: {
4846
5008
  /** V1 error format. */
4847
- '$.xgafv'?: string;
5009
+ '$.xgafv'?: '1' | '2';
4848
5010
  /** OAuth access token. */
4849
5011
  access_token?: string;
4850
5012
  /** Data format for response. */
4851
- alt?: string;
5013
+ alt?: 'json' | 'media' | 'proto';
4852
5014
  /** JSONP */
4853
5015
  callback?: string;
4854
5016
  /** Selector specifying which fields to include in a partial response. */
@@ -4871,11 +5033,11 @@ declare namespace gapi.client {
4871
5033
  /** Lists `PrivateConnection` resources in a given project and location. */
4872
5034
  list(request?: {
4873
5035
  /** V1 error format. */
4874
- '$.xgafv'?: string;
5036
+ '$.xgafv'?: '1' | '2';
4875
5037
  /** OAuth access token. */
4876
5038
  access_token?: string;
4877
5039
  /** Data format for response. */
4878
- alt?: string;
5040
+ alt?: 'json' | 'media' | 'proto';
4879
5041
  /** JSONP */
4880
5042
  callback?: string;
4881
5043
  /** Selector specifying which fields to include in a partial response. */
@@ -4906,11 +5068,11 @@ declare namespace gapi.client {
4906
5068
  /** Modifies a `PrivateConnection` resource. Only `description` and `routing_mode` fields can be updated. Only fields specified in `updateMask` are applied. */
4907
5069
  patch(request: {
4908
5070
  /** V1 error format. */
4909
- '$.xgafv'?: string;
5071
+ '$.xgafv'?: '1' | '2';
4910
5072
  /** OAuth access token. */
4911
5073
  access_token?: string;
4912
5074
  /** Data format for response. */
4913
- alt?: string;
5075
+ alt?: 'json' | 'media' | 'proto';
4914
5076
  /** JSONP */
4915
5077
  callback?: string;
4916
5078
  /** Selector specifying which fields to include in a partial response. */
@@ -4939,11 +5101,11 @@ declare namespace gapi.client {
4939
5101
  patch(
4940
5102
  request: {
4941
5103
  /** V1 error format. */
4942
- '$.xgafv'?: string;
5104
+ '$.xgafv'?: '1' | '2';
4943
5105
  /** OAuth access token. */
4944
5106
  access_token?: string;
4945
5107
  /** Data format for response. */
4946
- alt?: string;
5108
+ alt?: 'json' | 'media' | 'proto';
4947
5109
  /** JSONP */
4948
5110
  callback?: string;
4949
5111
  /** Selector specifying which fields to include in a partial response. */
@@ -4975,11 +5137,11 @@ declare namespace gapi.client {
4975
5137
  /** Creates a new VMware Engine network that can be used by a private cloud. */
4976
5138
  create(request: {
4977
5139
  /** V1 error format. */
4978
- '$.xgafv'?: string;
5140
+ '$.xgafv'?: '1' | '2';
4979
5141
  /** OAuth access token. */
4980
5142
  access_token?: string;
4981
5143
  /** Data format for response. */
4982
- alt?: string;
5144
+ alt?: 'json' | 'media' | 'proto';
4983
5145
  /** JSONP */
4984
5146
  callback?: string;
4985
5147
  /** Selector specifying which fields to include in a partial response. */
@@ -5008,11 +5170,11 @@ declare namespace gapi.client {
5008
5170
  create(
5009
5171
  request: {
5010
5172
  /** V1 error format. */
5011
- '$.xgafv'?: string;
5173
+ '$.xgafv'?: '1' | '2';
5012
5174
  /** OAuth access token. */
5013
5175
  access_token?: string;
5014
5176
  /** Data format for response. */
5015
- alt?: string;
5177
+ alt?: 'json' | 'media' | 'proto';
5016
5178
  /** JSONP */
5017
5179
  callback?: string;
5018
5180
  /** Selector specifying which fields to include in a partial response. */
@@ -5041,11 +5203,11 @@ declare namespace gapi.client {
5041
5203
  /** 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
5204
  delete(request?: {
5043
5205
  /** V1 error format. */
5044
- '$.xgafv'?: string;
5206
+ '$.xgafv'?: '1' | '2';
5045
5207
  /** OAuth access token. */
5046
5208
  access_token?: string;
5047
5209
  /** Data format for response. */
5048
- alt?: string;
5210
+ alt?: 'json' | 'media' | 'proto';
5049
5211
  /** JSONP */
5050
5212
  callback?: string;
5051
5213
  /** 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 +5234,11 @@ declare namespace gapi.client {
5072
5234
  /** 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
5235
  get(request?: {
5074
5236
  /** V1 error format. */
5075
- '$.xgafv'?: string;
5237
+ '$.xgafv'?: '1' | '2';
5076
5238
  /** OAuth access token. */
5077
5239
  access_token?: string;
5078
5240
  /** Data format for response. */
5079
- alt?: string;
5241
+ alt?: 'json' | 'media' | 'proto';
5080
5242
  /** JSONP */
5081
5243
  callback?: string;
5082
5244
  /** Selector specifying which fields to include in a partial response. */
@@ -5099,11 +5261,11 @@ declare namespace gapi.client {
5099
5261
  /** Lists `VmwareEngineNetwork` resources in a given project and location. */
5100
5262
  list(request?: {
5101
5263
  /** V1 error format. */
5102
- '$.xgafv'?: string;
5264
+ '$.xgafv'?: '1' | '2';
5103
5265
  /** OAuth access token. */
5104
5266
  access_token?: string;
5105
5267
  /** Data format for response. */
5106
- alt?: string;
5268
+ alt?: 'json' | 'media' | 'proto';
5107
5269
  /** JSONP */
5108
5270
  callback?: string;
5109
5271
  /** Selector specifying which fields to include in a partial response. */
@@ -5134,11 +5296,11 @@ declare namespace gapi.client {
5134
5296
  /** Modifies a VMware Engine network resource. Only the following fields can be updated: `description`. Only fields specified in `updateMask` are applied. */
5135
5297
  patch(request: {
5136
5298
  /** V1 error format. */
5137
- '$.xgafv'?: string;
5299
+ '$.xgafv'?: '1' | '2';
5138
5300
  /** OAuth access token. */
5139
5301
  access_token?: string;
5140
5302
  /** Data format for response. */
5141
- alt?: string;
5303
+ alt?: 'json' | 'media' | 'proto';
5142
5304
  /** JSONP */
5143
5305
  callback?: string;
5144
5306
  /** Selector specifying which fields to include in a partial response. */
@@ -5167,11 +5329,11 @@ declare namespace gapi.client {
5167
5329
  patch(
5168
5330
  request: {
5169
5331
  /** V1 error format. */
5170
- '$.xgafv'?: string;
5332
+ '$.xgafv'?: '1' | '2';
5171
5333
  /** OAuth access token. */
5172
5334
  access_token?: string;
5173
5335
  /** Data format for response. */
5174
- alt?: string;
5336
+ alt?: 'json' | 'media' | 'proto';
5175
5337
  /** JSONP */
5176
5338
  callback?: string;
5177
5339
  /** Selector specifying which fields to include in a partial response. */
@@ -5202,11 +5364,11 @@ declare namespace gapi.client {
5202
5364
  /** Gets information about a location. */
5203
5365
  get(request?: {
5204
5366
  /** V1 error format. */
5205
- '$.xgafv'?: string;
5367
+ '$.xgafv'?: '1' | '2';
5206
5368
  /** OAuth access token. */
5207
5369
  access_token?: string;
5208
5370
  /** Data format for response. */
5209
- alt?: string;
5371
+ alt?: 'json' | 'media' | 'proto';
5210
5372
  /** JSONP */
5211
5373
  callback?: string;
5212
5374
  /** Selector specifying which fields to include in a partial response. */
@@ -5229,11 +5391,11 @@ declare namespace gapi.client {
5229
5391
  /** 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
5392
  getDnsBindPermission(request?: {
5231
5393
  /** V1 error format. */
5232
- '$.xgafv'?: string;
5394
+ '$.xgafv'?: '1' | '2';
5233
5395
  /** OAuth access token. */
5234
5396
  access_token?: string;
5235
5397
  /** Data format for response. */
5236
- alt?: string;
5398
+ alt?: 'json' | 'media' | 'proto';
5237
5399
  /** JSONP */
5238
5400
  callback?: string;
5239
5401
  /** Selector specifying which fields to include in a partial response. */
@@ -5256,11 +5418,11 @@ declare namespace gapi.client {
5256
5418
  /** Lists information about the supported locations for this service. This method can be called in two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include public locations as well as private or other locations specifically visible to the project. */
5257
5419
  list(request?: {
5258
5420
  /** V1 error format. */
5259
- '$.xgafv'?: string;
5421
+ '$.xgafv'?: '1' | '2';
5260
5422
  /** OAuth access token. */
5261
5423
  access_token?: string;
5262
5424
  /** Data format for response. */
5263
- alt?: string;
5425
+ alt?: 'json' | 'media' | 'proto';
5264
5426
  /** JSONP */
5265
5427
  callback?: string;
5266
5428
  /** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented otherwise. This is primarily for internal usage. */