@maxim_mazurok/gapi.client.appengine-v1beta 0.2.20260316 → 0.2.20260529

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 (3) hide show
  1. package/index.d.ts +377 -230
  2. package/package.json +1 -1
  3. package/readme.md +17 -0
package/index.d.ts CHANGED
@@ -9,7 +9,7 @@
9
9
  // This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
10
10
  // In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
11
11
  // Generated from: https://appengine.googleapis.com/$discovery/rest?version=v1beta
12
- // Revision: 20260316
12
+ // Revision: 20260529
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -30,13 +30,25 @@ declare namespace gapi.client {
30
30
  namespace appengine {
31
31
  interface ApiConfigHandler {
32
32
  /** Action to take when users access resources that require authentication. Defaults to redirect. */
33
- authFailAction?: string;
33
+ authFailAction?:
34
+ | 'AUTH_FAIL_ACTION_UNSPECIFIED'
35
+ | 'AUTH_FAIL_ACTION_REDIRECT'
36
+ | 'AUTH_FAIL_ACTION_UNAUTHORIZED';
34
37
  /** Level of login required to access this resource. Defaults to optional. */
35
- login?: string;
38
+ login?:
39
+ | 'LOGIN_UNSPECIFIED'
40
+ | 'LOGIN_OPTIONAL'
41
+ | 'LOGIN_ADMIN'
42
+ | 'LOGIN_REQUIRED';
36
43
  /** Path to the script from the application root directory. */
37
44
  script?: string;
38
45
  /** Security (HTTPS) enforcement for this URL. */
39
- securityLevel?: string;
46
+ securityLevel?:
47
+ | 'SECURE_UNSPECIFIED'
48
+ | 'SECURE_DEFAULT'
49
+ | 'SECURE_NEVER'
50
+ | 'SECURE_OPTIONAL'
51
+ | 'SECURE_ALWAYS';
40
52
  /** URL to serve the endpoint at. */
41
53
  url?: string;
42
54
  }
@@ -50,7 +62,11 @@ declare namespace gapi.client {
50
62
  /** Output only. Google Cloud Storage bucket that can be used for storing files associated with this application. This bucket is associated with the application and can be used by the gcloud deployment commands.@OutputOnly */
51
63
  codeBucket?: string;
52
64
  /** The type of the Cloud Firestore or Cloud Datastore database associated with this application. */
53
- databaseType?: string;
65
+ databaseType?:
66
+ | 'DATABASE_TYPE_UNSPECIFIED'
67
+ | 'CLOUD_DATASTORE'
68
+ | 'CLOUD_FIRESTORE'
69
+ | 'CLOUD_DATASTORE_COMPATIBILITY';
54
70
  /** Output only. Google Cloud Storage bucket that can be used by this application to store content.@OutputOnly */
55
71
  defaultBucket?: string;
56
72
  /** Cookie expiration policy for this application. */
@@ -74,9 +90,13 @@ declare namespace gapi.client {
74
90
  /** The service account associated with the application. This is the app-level default identity. If no identity provided during create version, Admin API will fallback to this one. */
75
91
  serviceAccount?: string;
76
92
  /** Serving status of this application. */
77
- servingStatus?: string;
93
+ servingStatus?:
94
+ | 'UNSPECIFIED'
95
+ | 'SERVING'
96
+ | 'USER_DISABLED'
97
+ | 'SYSTEM_DISABLED';
78
98
  /** The SSL policy that will be applied to the application. If set to Modern it will restrict traffic with TLS < 1.2 and allow only Modern Ciphers suite */
79
- sslPolicy?: string;
99
+ sslPolicy?: 'SSL_POLICY_UNSPECIFIED' | 'DEFAULT' | 'MODERN';
80
100
  }
81
101
  interface AuthorizedCertificate {
82
102
  /** The SSL certificate serving the AuthorizedCertificate resource. This must be obtained independently from a certificate authority. */
@@ -173,7 +193,7 @@ declare namespace gapi.client {
173
193
  /** The previous and current reasons for a container state will be sent for a container event. CLHs that need to know the signal that caused the container event to trigger (edges) as opposed to just knowing the state can act upon differences in the previous and current reasons.Reasons will be provided for every system: service management, data governance, abuse, and billing.If this is a CCFE-triggered event used for reconciliation then the current reasons will be set to their *_CONTROL_PLANE_SYNC state. The previous reasons will contain the last known set of non-unknown non-control_plane_sync reasons for the state. */
174
194
  previousReasons?: Reasons;
175
195
  /** The current state of the container. This state is the culmination of all of the opinions from external systems that CCFE knows about of the container. */
176
- state?: string;
196
+ state?: 'UNKNOWN_STATE' | 'ON' | 'OFF' | 'DELETED';
177
197
  }
178
198
  interface CpuUtilization {
179
199
  /** Period of time over which CPU utilization is calculated. */
@@ -258,7 +278,7 @@ declare namespace gapi.client {
258
278
  /** Endpoints service name which is the name of the "service" resource in the Service Management API. For example "myapi.endpoints.myproject.cloud.goog" */
259
279
  name?: string;
260
280
  /** Endpoints rollout strategy. If FIXED, config_id must be specified. If MANAGED, config_id must be omitted. */
261
- rolloutStrategy?: string;
281
+ rolloutStrategy?: 'UNSPECIFIED_ROLLOUT_STRATEGY' | 'FIXED' | 'MANAGED';
262
282
  }
263
283
  interface Entrypoint {
264
284
  /** The format should be a shell command that can be fed to bash -c. */
@@ -266,7 +286,12 @@ declare namespace gapi.client {
266
286
  }
267
287
  interface ErrorHandler {
268
288
  /** Error condition this handler applies to. */
269
- errorCode?: string;
289
+ errorCode?:
290
+ | 'ERROR_CODE_UNSPECIFIED'
291
+ | 'ERROR_CODE_DEFAULT'
292
+ | 'ERROR_CODE_OVER_QUOTA'
293
+ | 'ERROR_CODE_DOS_API_DENIAL'
294
+ | 'ERROR_CODE_TIMEOUT';
270
295
  /** MIME type of file. Defaults to text/html. */
271
296
  mimeType?: string;
272
297
  /** Static file content to be served for this error. */
@@ -292,7 +317,7 @@ declare namespace gapi.client {
292
317
  }
293
318
  interface FirewallRule {
294
319
  /** The action to take on matched requests. */
295
- action?: string;
320
+ action?: 'UNSPECIFIED_ACTION' | 'ALLOW' | 'DENY';
296
321
  /** An optional string description of this rule. This field has a maximum length of 400 characters. */
297
322
  description?: string;
298
323
  priority?: number;
@@ -349,7 +374,7 @@ declare namespace gapi.client {
349
374
  /** Output only. App Engine release this instance is running on. */
350
375
  appEngineRelease?: string;
351
376
  /** Output only. Availability of the instance. */
352
- availability?: string;
377
+ availability?: 'UNSPECIFIED' | 'RESIDENT' | 'DYNAMIC';
353
378
  /** Output only. Average latency (ms) over the last minute. */
354
379
  averageLatency?: number;
355
380
  /** Output only. Number of errors since this instance was started. */
@@ -373,7 +398,13 @@ declare namespace gapi.client {
373
398
  /** Output only. The IP address of this instance. Only applicable for instances in App Engine flexible environment. */
374
399
  vmIp?: string;
375
400
  /** Output only. The liveness health check of this instance. Only applicable for instances in App Engine flexible environment. */
376
- vmLiveness?: string;
401
+ vmLiveness?:
402
+ | 'LIVENESS_STATE_UNSPECIFIED'
403
+ | 'UNKNOWN'
404
+ | 'HEALTHY'
405
+ | 'UNHEALTHY'
406
+ | 'DRAINING'
407
+ | 'TIMEOUT';
377
408
  /** Output only. Name of the virtual machine where this instance lives. Only applicable for instances in App Engine flexible environment. */
378
409
  vmName?: string;
379
410
  /** Output only. Status of the virtual machine where this instance lives. Only applicable for instances in App Engine flexible environment. */
@@ -489,7 +520,14 @@ declare namespace gapi.client {
489
520
  /** Time at which the certificate was last renewed. The renewal process is fully managed. Certificate renewal will automatically occur before the certificate expires. Renewal errors can be tracked via ManagementStatus.@OutputOnly */
490
521
  lastRenewalTime?: string;
491
522
  /** Status of certificate management. Refers to the most recent certificate acquisition or renewal attempt.@OutputOnly */
492
- status?: string;
523
+ status?:
524
+ | 'MANAGEMENT_STATUS_UNSPECIFIED'
525
+ | 'OK'
526
+ | 'PENDING'
527
+ | 'FAILED_RETRYING_NOT_VISIBLE'
528
+ | 'FAILED_PERMANENT'
529
+ | 'FAILED_RETRYING_CAA_FORBIDDEN'
530
+ | 'FAILED_RETRYING_CAA_CHECKING';
493
531
  }
494
532
  interface ManualScaling {
495
533
  /** Number of instances to assign to the service at the start. This number can later be altered by using the Modules API (https://cloud.google.com/appengine/docs/python/modules/functions) set_num_instances() function. */
@@ -499,7 +537,7 @@ declare namespace gapi.client {
499
537
  /** List of ports, or port pairs, to forward from the virtual machine to the application container. Only applicable in the App Engine flexible environment. */
500
538
  forwardedPorts?: string[];
501
539
  /** The IP mode for instances. Only applicable in the App Engine flexible environment. */
502
- instanceIpMode?: string;
540
+ instanceIpMode?: 'INSTANCE_IP_MODE_UNSPECIFIED' | 'EXTERNAL' | 'INTERNAL';
503
541
  /** Tag to apply to the instance during creation. Only applicable in the App Engine flexible environment. */
504
542
  instanceTag?: string;
505
543
  /** Google Compute Engine network where the virtual machines are created. Specify the short name, not the resource path.Defaults to default. */
@@ -511,7 +549,11 @@ declare namespace gapi.client {
511
549
  }
512
550
  interface NetworkSettings {
513
551
  /** The ingress settings for version or service. */
514
- ingressTrafficAllowed?: string;
552
+ ingressTrafficAllowed?:
553
+ | 'INGRESS_TRAFFIC_ALLOWED_UNSPECIFIED'
554
+ | 'INGRESS_TRAFFIC_ALLOWED_ALL'
555
+ | 'INGRESS_TRAFFIC_ALLOWED_INTERNAL_ONLY'
556
+ | 'INGRESS_TRAFFIC_ALLOWED_INTERNAL_AND_LB';
515
557
  }
516
558
  interface NetworkUtilization {
517
559
  /** Target bytes received per second. */
@@ -590,7 +632,10 @@ declare namespace gapi.client {
590
632
  /** The unique ID for this project event. CLHs can use this value to dedup repeated calls. required */
591
633
  eventId?: string;
592
634
  /** Phase indicates when in the container event propagation this event is being communicated. Events are sent before and after the per-resource events are propagated. required */
593
- phase?: string;
635
+ phase?:
636
+ | 'CONTAINER_EVENT_PHASE_UNSPECIFIED'
637
+ | 'BEFORE_RESOURCE_HANDLING'
638
+ | 'AFTER_RESOURCE_HANDLING';
594
639
  /** The projects metadata for this project. required */
595
640
  projectMetadata?: ProjectsMetadata;
596
641
  /** The state of the organization that led to this event. */
@@ -602,7 +647,7 @@ declare namespace gapi.client {
602
647
  /** The consumer project number. */
603
648
  consumerProjectNumber?: string;
604
649
  /** The CCFE state of the consumer project. It is the same state that is communicated to the CLH during project events. Notice that this field is not set in the DB, it is only set in this proto when communicated to CLH in the side channel. */
605
- consumerProjectState?: string;
650
+ consumerProjectState?: 'UNKNOWN_STATE' | 'ON' | 'OFF' | 'DELETED';
606
651
  /** The GCE tags associated with the consumer project and those inherited due to their ancestry, if any. Not supported by CCFE. */
607
652
  gceTag?: GceTag[];
608
653
  /** DEPRECATED: Indicates whether the GCE project is in the DEPROVISIONING state. This field is a temporary workaround (see b/475310865) to allow GCE extensions to bypass certain checks during deprovisioning. It will be replaced by a permanent solution in the future. */
@@ -635,12 +680,37 @@ declare namespace gapi.client {
635
680
  timeout?: string;
636
681
  }
637
682
  interface Reasons {
638
- abuse?: string;
639
- billing?: string;
640
- dataGovernance?: string;
683
+ abuse?:
684
+ | 'ABUSE_UNKNOWN_REASON'
685
+ | 'ABUSE_CONTROL_PLANE_SYNC'
686
+ | 'SUSPEND'
687
+ | 'REINSTATE';
688
+ billing?:
689
+ | 'BILLING_UNKNOWN_REASON'
690
+ | 'BILLING_CONTROL_PLANE_SYNC'
691
+ | 'PROBATION'
692
+ | 'CLOSE'
693
+ | 'OPEN';
694
+ dataGovernance?:
695
+ | 'DATA_GOVERNANCE_UNKNOWN_REASON'
696
+ | 'DATA_GOVERNANCE_CONTROL_PLANE_SYNC'
697
+ | 'HIDE'
698
+ | 'UNHIDE'
699
+ | 'PURGE';
641
700
  /** Consumer Container denotes if the service is active within a project or not. This information could be used to clean up resources in case service in DISABLED_FULL i.e. Service is inactive > 30 days. */
642
- serviceActivation?: string;
643
- serviceManagement?: string;
701
+ serviceActivation?:
702
+ | 'SERVICE_ACTIVATION_STATUS_UNSPECIFIED'
703
+ | 'SERVICE_ACTIVATION_ENABLED'
704
+ | 'SERVICE_ACTIVATION_DISABLED'
705
+ | 'SERVICE_ACTIVATION_DISABLED_FULL'
706
+ | 'SERVICE_ACTIVATION_UNKNOWN_REASON';
707
+ serviceManagement?:
708
+ | 'SERVICE_MANAGEMENT_UNKNOWN_REASON'
709
+ | 'SERVICE_MANAGEMENT_CONTROL_PLANE_SYNC'
710
+ | 'ACTIVATION'
711
+ | 'PREPARE_DEACTIVATION'
712
+ | 'ABORT_DEACTIVATION'
713
+ | 'COMMIT_DEACTIVATION';
644
714
  }
645
715
  interface RepairApplicationRequest {}
646
716
  interface RequestUtilization {
@@ -663,7 +733,7 @@ declare namespace gapi.client {
663
733
  /** Data for this record. Values vary by record type, as defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1). */
664
734
  rrdata?: string;
665
735
  /** Resource record type. Example: AAAA. */
666
- type?: string;
736
+ type?: 'A' | 'AAAA' | 'CNAME';
667
737
  }
668
738
  interface Resources {
669
739
  /** Number of CPU cores needed. */
@@ -687,11 +757,19 @@ declare namespace gapi.client {
687
757
  /** Date when Runtime is end of support. */
688
758
  endOfSupportDate?: Date;
689
759
  /** The environment of the runtime. */
690
- environment?: string;
760
+ environment?: 'ENVIRONMENT_UNSPECIFIED' | 'STANDARD' | 'FLEXIBLE';
691
761
  /** The name of the runtime, e.g., 'go113', 'nodejs12', etc. */
692
762
  name?: string;
693
763
  /** The stage of life this runtime is in, e.g., BETA, GA, etc. */
694
- stage?: string;
764
+ stage?:
765
+ | 'RUNTIME_STAGE_UNSPECIFIED'
766
+ | 'DEVELOPMENT'
767
+ | 'ALPHA'
768
+ | 'BETA'
769
+ | 'GA'
770
+ | 'DEPRECATED'
771
+ | 'DECOMMISSIONED'
772
+ | 'END_OF_SUPPORT';
695
773
  /** Supported operating systems for the runtime, e.g., 'ubuntu22', etc. */
696
774
  supportedOperatingSystems?: string[];
697
775
  /** Warning messages, e.g., a deprecation warning. */
@@ -721,7 +799,7 @@ declare namespace gapi.client {
721
799
  /** Output only. ID of the managed AuthorizedCertificate resource currently being provisioned, if applicable. Until the new managed certificate has been successfully provisioned, the previous SSL state will be preserved. Once the provisioning process completes, the certificate_id field will reflect the new managed certificate and this field will be left empty. To remove SSL support while there is still a pending managed certificate, clear the certificate_id field with an UpdateDomainMappingRequest.@OutputOnly */
722
800
  pendingManagedCertificateId?: string;
723
801
  /** SSL management type for this domain. If AUTOMATIC, a managed certificate is automatically provisioned. If MANUAL, certificate_id must be manually specified in order to configure SSL for this domain. */
724
- sslManagementType?: string;
802
+ sslManagementType?: 'AUTOMATIC' | 'MANUAL';
725
803
  }
726
804
  interface StandardSchedulerSettings {
727
805
  /** Maximum number of instances to run for this version. Set to 2147483647 to disable max_instances configuration. */
@@ -753,7 +831,7 @@ declare namespace gapi.client {
753
831
  /** The status code, which should be an enum value of google.rpc.Code. */
754
832
  code?: number;
755
833
  /** A list of messages that carry the error details. There is a common set of message types for APIs to use. */
756
- details?: Array<{[P in string]: any}>;
834
+ details?: {[P in string]: any}[];
757
835
  /** A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client. */
758
836
  message?: string;
759
837
  }
@@ -761,7 +839,7 @@ declare namespace gapi.client {
761
839
  /** Mapping from version IDs within the service to fractional (0.000, 1] allocations of traffic for that version. Each version can be specified only once, but some versions in the service may not have any traffic allocation. Services that have traffic allocated cannot be deleted until either the service is deleted or their traffic allocation is removed. Allocations must sum to 1. Up to two decimal place precision is supported for IP-based splits and up to three decimal places is supported for cookie-based splits. */
762
840
  allocations?: {[P in string]: number};
763
841
  /** Mechanism used to determine which version a request is sent to. The traffic selection algorithm will be stable for either type until allocations are changed. */
764
- shardBy?: string;
842
+ shardBy?: 'UNSPECIFIED' | 'COOKIE' | 'IP' | 'RANDOM';
765
843
  }
766
844
  interface UrlDispatchRule {
767
845
  /** Domain name to match against. The wildcard "*" is supported if specified before a period: "*.".Defaults to matching all domains: "*". */
@@ -775,15 +853,32 @@ declare namespace gapi.client {
775
853
  /** Uses API Endpoints to handle requests. */
776
854
  apiEndpoint?: ApiEndpointHandler;
777
855
  /** Action to take when users access resources that require authentication. Defaults to redirect. */
778
- authFailAction?: string;
856
+ authFailAction?:
857
+ | 'AUTH_FAIL_ACTION_UNSPECIFIED'
858
+ | 'AUTH_FAIL_ACTION_REDIRECT'
859
+ | 'AUTH_FAIL_ACTION_UNAUTHORIZED';
779
860
  /** Level of login required to access this resource. Not supported for Node.js in the App Engine standard environment. */
780
- login?: string;
861
+ login?:
862
+ | 'LOGIN_UNSPECIFIED'
863
+ | 'LOGIN_OPTIONAL'
864
+ | 'LOGIN_ADMIN'
865
+ | 'LOGIN_REQUIRED';
781
866
  /** 30x code to use when performing redirects for the secure field. Defaults to 302. */
782
- redirectHttpResponseCode?: string;
867
+ redirectHttpResponseCode?:
868
+ | 'REDIRECT_HTTP_RESPONSE_CODE_UNSPECIFIED'
869
+ | 'REDIRECT_HTTP_RESPONSE_CODE_301'
870
+ | 'REDIRECT_HTTP_RESPONSE_CODE_302'
871
+ | 'REDIRECT_HTTP_RESPONSE_CODE_303'
872
+ | 'REDIRECT_HTTP_RESPONSE_CODE_307';
783
873
  /** Executes a script to handle the requests that match this URL pattern. Only the auto value is supported for Node.js in the App Engine standard environment, for example "script": "auto". */
784
874
  script?: ScriptHandler;
785
875
  /** Security (HTTPS) enforcement for this URL. */
786
- securityLevel?: string;
876
+ securityLevel?:
877
+ | 'SECURE_UNSPECIFIED'
878
+ | 'SECURE_DEFAULT'
879
+ | 'SECURE_NEVER'
880
+ | 'SECURE_OPTIONAL'
881
+ | 'SECURE_ALWAYS';
787
882
  /** Returns the contents of a file, such as an image, as the response. */
788
883
  staticFiles?: StaticFilesHandler;
789
884
  /** URL prefix. Uses regular expression syntax, which means regexp special characters must be escaped, but should not contain groupings. All URLs that begin with this prefix are handled by this handler, using the portion of the URL after the prefix as part of the file path. */
@@ -795,7 +890,23 @@ declare namespace gapi.client {
795
890
  /** Allows App Engine second generation runtimes to access the legacy bundled services. */
796
891
  appEngineApis?: boolean;
797
892
  /** List of specific App Engine Bundled Services that are enabled for this Version. */
798
- appEngineBundledServices?: string[];
893
+ appEngineBundledServices?:
894
+ | 'BUNDLED_SERVICE_TYPE_UNSPECIFIED'
895
+ | 'BUNDLED_SERVICE_TYPE_APP_IDENTITY_SERVICE'
896
+ | 'BUNDLED_SERVICE_TYPE_BLOBSTORE'
897
+ | 'BUNDLED_SERVICE_TYPE_CAPABILITY_SERVICE'
898
+ | 'BUNDLED_SERVICE_TYPE_DATASTORE_V3'
899
+ | 'BUNDLED_SERVICE_TYPE_DEFERRED'
900
+ | 'BUNDLED_SERVICE_TYPE_IMAGES'
901
+ | 'BUNDLED_SERVICE_TYPE_MAIL'
902
+ | 'BUNDLED_SERVICE_TYPE_MEMCACHE'
903
+ | 'BUNDLED_SERVICE_TYPE_MODULES'
904
+ | 'BUNDLED_SERVICE_TYPE_NAMESPACES'
905
+ | 'BUNDLED_SERVICE_TYPE_NDB'
906
+ | 'BUNDLED_SERVICE_TYPE_SEARCH'
907
+ | 'BUNDLED_SERVICE_TYPE_TASKQUEUES'
908
+ | 'BUNDLED_SERVICE_TYPE_URLFETCH'
909
+ | 'BUNDLED_SERVICE_TYPE_USERS'[];
799
910
  /** Automatic scaling is based on request rate, response latencies, and other application metrics. Instances are dynamically created and destroyed as needed in order to handle traffic. */
800
911
  automaticScaling?: AutomaticScaling;
801
912
  /** A service with basic scaling will create an instance when the application receives a request. The instance will be turned down when the app becomes idle. Basic scaling is ideal for work that is intermittent or driven by user activity. */
@@ -835,7 +946,16 @@ declare namespace gapi.client {
835
946
  /** Relative name of the version within the service. Example: v1. Version names can contain only lowercase letters, numbers, or hyphens. Reserved names: "default", "latest", and any name with the prefix "ah-". */
836
947
  id?: string;
837
948
  /** Before an application can receive email or XMPP messages, the application must be configured to enable the service. */
838
- inboundServices?: string[];
949
+ inboundServices?:
950
+ | 'INBOUND_SERVICE_UNSPECIFIED'
951
+ | 'INBOUND_SERVICE_MAIL'
952
+ | 'INBOUND_SERVICE_MAIL_BOUNCE'
953
+ | 'INBOUND_SERVICE_XMPP_ERROR'
954
+ | 'INBOUND_SERVICE_XMPP_MESSAGE'
955
+ | 'INBOUND_SERVICE_XMPP_SUBSCRIBE'
956
+ | 'INBOUND_SERVICE_XMPP_PRESENCE'
957
+ | 'INBOUND_SERVICE_CHANNEL_PRESENCE'
958
+ | 'INBOUND_SERVICE_WARMUP'[];
839
959
  /** Instance class that is used to run this version. Valid values are: AutomaticScaling: F1, F2, F4, F4_1G ManualScaling or BasicScaling: B1, B2, B4, B8, B4_1GDefaults to F1 for AutomaticScaling and B1 for ManualScaling or BasicScaling. */
840
960
  instanceClass?: string;
841
961
  /** Configuration for third-party Python runtime libraries that are required by the application.Only returned in GET requests if view=FULL is set. */
@@ -865,7 +985,7 @@ declare namespace gapi.client {
865
985
  /** The identity that the deployed version will run as. Admin API will use the App Engine Appspot service account as default if this field is neither provided in app.yaml file nor through CLI flag. */
866
986
  serviceAccount?: string;
867
987
  /** Current serving status of this version. Only the versions with a SERVING status create instances and can be billed.SERVING_STATUS_UNSPECIFIED is an invalid value. Defaults to SERVING. */
868
- servingStatus?: string;
988
+ servingStatus?: 'SERVING_STATUS_UNSPECIFIED' | 'SERVING' | 'STOPPED';
869
989
  /** Whether multiple requests can be dispatched to this version at once. */
870
990
  threadsafe?: boolean;
871
991
  /** Output only. Serving URL for this version. Example: "https://myversion-dot-myservice-dot-myapp.appspot.com"@OutputOnly */
@@ -891,11 +1011,17 @@ declare namespace gapi.client {
891
1011
  /** The Direct VPC configuration. Currently only single network interface is supported. */
892
1012
  networkInterfaces?: VpcNetworkInterface[];
893
1013
  /** The traffic egress setting for the VPC network interface, controlling what traffic is diverted through it. */
894
- vpcEgress?: string;
1014
+ vpcEgress?:
1015
+ | 'VPC_EGRESS_UNSPECIFIED'
1016
+ | 'ALL_TRAFFIC'
1017
+ | 'PRIVATE_IP_RANGES';
895
1018
  }
896
1019
  interface VpcAccessConnector {
897
1020
  /** The egress setting for the connector, controlling what traffic is diverted through it. */
898
- egressSetting?: string;
1021
+ egressSetting?:
1022
+ | 'EGRESS_SETTING_UNSPECIFIED'
1023
+ | 'ALL_TRAFFIC'
1024
+ | 'PRIVATE_IP_RANGES';
899
1025
  /** Full Serverless VPC Access Connector name e.g. projects/my-project/locations/us-central1/connectors/c1. */
900
1026
  name?: string;
901
1027
  }
@@ -917,11 +1043,11 @@ declare namespace gapi.client {
917
1043
  /** Uploads the specified SSL certificate. */
918
1044
  create(request: {
919
1045
  /** V1 error format. */
920
- '$.xgafv'?: string;
1046
+ '$.xgafv'?: '1' | '2';
921
1047
  /** OAuth access token. */
922
1048
  access_token?: string;
923
1049
  /** Data format for response. */
924
- alt?: string;
1050
+ alt?: 'json' | 'media' | 'proto';
925
1051
  /** Part of `parent`. Required. Name of the parent Application resource. Example: apps/myapp. */
926
1052
  appsId: string;
927
1053
  /** JSONP */
@@ -946,11 +1072,11 @@ declare namespace gapi.client {
946
1072
  create(
947
1073
  request: {
948
1074
  /** V1 error format. */
949
- '$.xgafv'?: string;
1075
+ '$.xgafv'?: '1' | '2';
950
1076
  /** OAuth access token. */
951
1077
  access_token?: string;
952
1078
  /** Data format for response. */
953
- alt?: string;
1079
+ alt?: 'json' | 'media' | 'proto';
954
1080
  /** Part of `parent`. Required. Name of the parent Application resource. Example: apps/myapp. */
955
1081
  appsId: string;
956
1082
  /** JSONP */
@@ -975,11 +1101,11 @@ declare namespace gapi.client {
975
1101
  /** Deletes the specified SSL certificate. */
976
1102
  delete(request?: {
977
1103
  /** V1 error format. */
978
- '$.xgafv'?: string;
1104
+ '$.xgafv'?: '1' | '2';
979
1105
  /** OAuth access token. */
980
1106
  access_token?: string;
981
1107
  /** Data format for response. */
982
- alt?: string;
1108
+ alt?: 'json' | 'media' | 'proto';
983
1109
  /** Part of `name`. Required. Name of the resource to delete. Example: apps/myapp/authorizedCertificates/12345. */
984
1110
  appsId: string;
985
1111
  /** Part of `name`. See documentation of `appsId`. */
@@ -1004,11 +1130,11 @@ declare namespace gapi.client {
1004
1130
  /** Gets the specified SSL certificate. */
1005
1131
  get(request?: {
1006
1132
  /** V1 error format. */
1007
- '$.xgafv'?: string;
1133
+ '$.xgafv'?: '1' | '2';
1008
1134
  /** OAuth access token. */
1009
1135
  access_token?: string;
1010
1136
  /** Data format for response. */
1011
- alt?: string;
1137
+ alt?: 'json' | 'media' | 'proto';
1012
1138
  /** Part of `name`. Required. Name of the resource requested. Example: apps/myapp/authorizedCertificates/12345. */
1013
1139
  appsId: string;
1014
1140
  /** Part of `name`. See documentation of `appsId`. */
@@ -1030,16 +1156,16 @@ declare namespace gapi.client {
1030
1156
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1031
1157
  uploadType?: string;
1032
1158
  /** Controls the set of fields returned in the GET response. */
1033
- view?: string;
1159
+ view?: 'BASIC_CERTIFICATE' | 'FULL_CERTIFICATE';
1034
1160
  }): Request<AuthorizedCertificate>;
1035
1161
  /** Lists all SSL certificates the user is authorized to administer. */
1036
1162
  list(request?: {
1037
1163
  /** V1 error format. */
1038
- '$.xgafv'?: string;
1164
+ '$.xgafv'?: '1' | '2';
1039
1165
  /** OAuth access token. */
1040
1166
  access_token?: string;
1041
1167
  /** Data format for response. */
1042
- alt?: string;
1168
+ alt?: 'json' | 'media' | 'proto';
1043
1169
  /** Part of `parent`. Required. Name of the parent Application resource. Example: apps/myapp. */
1044
1170
  appsId: string;
1045
1171
  /** JSONP */
@@ -1063,16 +1189,16 @@ declare namespace gapi.client {
1063
1189
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1064
1190
  uploadType?: string;
1065
1191
  /** Controls the set of fields returned in the LIST response. */
1066
- view?: string;
1192
+ view?: 'BASIC_CERTIFICATE' | 'FULL_CERTIFICATE';
1067
1193
  }): Request<ListAuthorizedCertificatesResponse>;
1068
1194
  /** Updates the specified SSL certificate. To renew a certificate and maintain its existing domain mappings, update certificate_data with a new certificate. The new certificate must be applicable to the same domains as the original certificate. The certificate display_name may also be updated. */
1069
1195
  patch(request: {
1070
1196
  /** V1 error format. */
1071
- '$.xgafv'?: string;
1197
+ '$.xgafv'?: '1' | '2';
1072
1198
  /** OAuth access token. */
1073
1199
  access_token?: string;
1074
1200
  /** Data format for response. */
1075
- alt?: string;
1201
+ alt?: 'json' | 'media' | 'proto';
1076
1202
  /** Part of `name`. Required. Name of the resource to update. Example: apps/myapp/authorizedCertificates/12345. */
1077
1203
  appsId: string;
1078
1204
  /** Part of `name`. See documentation of `appsId`. */
@@ -1101,11 +1227,11 @@ declare namespace gapi.client {
1101
1227
  patch(
1102
1228
  request: {
1103
1229
  /** V1 error format. */
1104
- '$.xgafv'?: string;
1230
+ '$.xgafv'?: '1' | '2';
1105
1231
  /** OAuth access token. */
1106
1232
  access_token?: string;
1107
1233
  /** Data format for response. */
1108
- alt?: string;
1234
+ alt?: 'json' | 'media' | 'proto';
1109
1235
  /** Part of `name`. Required. Name of the resource to update. Example: apps/myapp/authorizedCertificates/12345. */
1110
1236
  appsId: string;
1111
1237
  /** Part of `name`. See documentation of `appsId`. */
@@ -1136,11 +1262,11 @@ declare namespace gapi.client {
1136
1262
  /** Lists all domains the user is authorized to administer. */
1137
1263
  list(request?: {
1138
1264
  /** V1 error format. */
1139
- '$.xgafv'?: string;
1265
+ '$.xgafv'?: '1' | '2';
1140
1266
  /** OAuth access token. */
1141
1267
  access_token?: string;
1142
1268
  /** Data format for response. */
1143
- alt?: string;
1269
+ alt?: 'json' | 'media' | 'proto';
1144
1270
  /** Part of `parent`. Required. Name of the parent Application resource. Example: apps/myapp. */
1145
1271
  appsId: string;
1146
1272
  /** JSONP */
@@ -1169,11 +1295,11 @@ declare namespace gapi.client {
1169
1295
  /** Maps a domain to an application. A user must be authorized to administer a domain in order to map it to an application. For a list of available authorized domains, see AuthorizedDomains.ListAuthorizedDomains. */
1170
1296
  create(request: {
1171
1297
  /** V1 error format. */
1172
- '$.xgafv'?: string;
1298
+ '$.xgafv'?: '1' | '2';
1173
1299
  /** OAuth access token. */
1174
1300
  access_token?: string;
1175
1301
  /** Data format for response. */
1176
- alt?: string;
1302
+ alt?: 'json' | 'media' | 'proto';
1177
1303
  /** Part of `parent`. Required. Name of the parent Application resource. Example: apps/myapp. */
1178
1304
  appsId: string;
1179
1305
  /** JSONP */
@@ -1185,7 +1311,10 @@ declare namespace gapi.client {
1185
1311
  /** OAuth 2.0 token for the current user. */
1186
1312
  oauth_token?: string;
1187
1313
  /** Whether the domain creation should override any existing mappings for this domain. By default, overrides are rejected. */
1188
- overrideStrategy?: string;
1314
+ overrideStrategy?:
1315
+ | 'UNSPECIFIED_DOMAIN_OVERRIDE_STRATEGY'
1316
+ | 'STRICT'
1317
+ | 'OVERRIDE';
1189
1318
  /** Returns response with indentations and line breaks. */
1190
1319
  prettyPrint?: boolean;
1191
1320
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
@@ -1200,11 +1329,11 @@ declare namespace gapi.client {
1200
1329
  create(
1201
1330
  request: {
1202
1331
  /** V1 error format. */
1203
- '$.xgafv'?: string;
1332
+ '$.xgafv'?: '1' | '2';
1204
1333
  /** OAuth access token. */
1205
1334
  access_token?: string;
1206
1335
  /** Data format for response. */
1207
- alt?: string;
1336
+ alt?: 'json' | 'media' | 'proto';
1208
1337
  /** Part of `parent`. Required. Name of the parent Application resource. Example: apps/myapp. */
1209
1338
  appsId: string;
1210
1339
  /** JSONP */
@@ -1216,7 +1345,10 @@ declare namespace gapi.client {
1216
1345
  /** OAuth 2.0 token for the current user. */
1217
1346
  oauth_token?: string;
1218
1347
  /** Whether the domain creation should override any existing mappings for this domain. By default, overrides are rejected. */
1219
- overrideStrategy?: string;
1348
+ overrideStrategy?:
1349
+ | 'UNSPECIFIED_DOMAIN_OVERRIDE_STRATEGY'
1350
+ | 'STRICT'
1351
+ | 'OVERRIDE';
1220
1352
  /** Returns response with indentations and line breaks. */
1221
1353
  prettyPrint?: boolean;
1222
1354
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
@@ -1231,11 +1363,11 @@ declare namespace gapi.client {
1231
1363
  /** Deletes the specified domain mapping. A user must be authorized to administer the associated domain in order to delete a DomainMapping resource. */
1232
1364
  delete(request?: {
1233
1365
  /** V1 error format. */
1234
- '$.xgafv'?: string;
1366
+ '$.xgafv'?: '1' | '2';
1235
1367
  /** OAuth access token. */
1236
1368
  access_token?: string;
1237
1369
  /** Data format for response. */
1238
- alt?: string;
1370
+ alt?: 'json' | 'media' | 'proto';
1239
1371
  /** Part of `name`. Required. Name of the resource to delete. Example: apps/myapp/domainMappings/example.com. */
1240
1372
  appsId: string;
1241
1373
  /** JSONP */
@@ -1260,11 +1392,11 @@ declare namespace gapi.client {
1260
1392
  /** Gets the specified domain mapping. */
1261
1393
  get(request?: {
1262
1394
  /** V1 error format. */
1263
- '$.xgafv'?: string;
1395
+ '$.xgafv'?: '1' | '2';
1264
1396
  /** OAuth access token. */
1265
1397
  access_token?: string;
1266
1398
  /** Data format for response. */
1267
- alt?: string;
1399
+ alt?: 'json' | 'media' | 'proto';
1268
1400
  /** Part of `name`. Required. Name of the resource requested. Example: apps/myapp/domainMappings/example.com. */
1269
1401
  appsId: string;
1270
1402
  /** JSONP */
@@ -1289,11 +1421,11 @@ declare namespace gapi.client {
1289
1421
  /** Lists the domain mappings on an application. */
1290
1422
  list(request?: {
1291
1423
  /** V1 error format. */
1292
- '$.xgafv'?: string;
1424
+ '$.xgafv'?: '1' | '2';
1293
1425
  /** OAuth access token. */
1294
1426
  access_token?: string;
1295
1427
  /** Data format for response. */
1296
- alt?: string;
1428
+ alt?: 'json' | 'media' | 'proto';
1297
1429
  /** Part of `parent`. Required. Name of the parent Application resource. Example: apps/myapp. */
1298
1430
  appsId: string;
1299
1431
  /** JSONP */
@@ -1320,11 +1452,11 @@ declare namespace gapi.client {
1320
1452
  /** Updates the specified domain mapping. To map an SSL certificate to a domain mapping, update certificate_id to point to an AuthorizedCertificate resource. A user must be authorized to administer the associated domain in order to update a DomainMapping resource. */
1321
1453
  patch(request: {
1322
1454
  /** V1 error format. */
1323
- '$.xgafv'?: string;
1455
+ '$.xgafv'?: '1' | '2';
1324
1456
  /** OAuth access token. */
1325
1457
  access_token?: string;
1326
1458
  /** Data format for response. */
1327
- alt?: string;
1459
+ alt?: 'json' | 'media' | 'proto';
1328
1460
  /** Part of `name`. Required. Name of the resource to update. Example: apps/myapp/domainMappings/example.com. */
1329
1461
  appsId: string;
1330
1462
  /** JSONP */
@@ -1353,11 +1485,11 @@ declare namespace gapi.client {
1353
1485
  patch(
1354
1486
  request: {
1355
1487
  /** V1 error format. */
1356
- '$.xgafv'?: string;
1488
+ '$.xgafv'?: '1' | '2';
1357
1489
  /** OAuth access token. */
1358
1490
  access_token?: string;
1359
1491
  /** Data format for response. */
1360
- alt?: string;
1492
+ alt?: 'json' | 'media' | 'proto';
1361
1493
  /** Part of `name`. Required. Name of the resource to update. Example: apps/myapp/domainMappings/example.com. */
1362
1494
  appsId: string;
1363
1495
  /** JSONP */
@@ -1388,11 +1520,11 @@ declare namespace gapi.client {
1388
1520
  /** Replaces the entire firewall ruleset in one bulk operation. This overrides and replaces the rules of an existing firewall with the new rules.If the final rule does not match traffic with the '*' wildcard IP range, then an "allow all" rule is explicitly added to the end of the list. */
1389
1521
  batchUpdate(request: {
1390
1522
  /** V1 error format. */
1391
- '$.xgafv'?: string;
1523
+ '$.xgafv'?: '1' | '2';
1392
1524
  /** OAuth access token. */
1393
1525
  access_token?: string;
1394
1526
  /** Data format for response. */
1395
- alt?: string;
1527
+ alt?: 'json' | 'media' | 'proto';
1396
1528
  /** Part of `name`. Name of the Firewall collection to set. Example: apps/myapp/firewall/ingressRules. */
1397
1529
  appsId: string;
1398
1530
  /** JSONP */
@@ -1417,11 +1549,11 @@ declare namespace gapi.client {
1417
1549
  batchUpdate(
1418
1550
  request: {
1419
1551
  /** V1 error format. */
1420
- '$.xgafv'?: string;
1552
+ '$.xgafv'?: '1' | '2';
1421
1553
  /** OAuth access token. */
1422
1554
  access_token?: string;
1423
1555
  /** Data format for response. */
1424
- alt?: string;
1556
+ alt?: 'json' | 'media' | 'proto';
1425
1557
  /** Part of `name`. Name of the Firewall collection to set. Example: apps/myapp/firewall/ingressRules. */
1426
1558
  appsId: string;
1427
1559
  /** JSONP */
@@ -1446,11 +1578,11 @@ declare namespace gapi.client {
1446
1578
  /** Creates a firewall rule for the application. */
1447
1579
  create(request: {
1448
1580
  /** V1 error format. */
1449
- '$.xgafv'?: string;
1581
+ '$.xgafv'?: '1' | '2';
1450
1582
  /** OAuth access token. */
1451
1583
  access_token?: string;
1452
1584
  /** Data format for response. */
1453
- alt?: string;
1585
+ alt?: 'json' | 'media' | 'proto';
1454
1586
  /** Part of `parent`. Required. Name of the parent Firewall collection in which to create a new rule. Example: apps/myapp/firewall/ingressRules. */
1455
1587
  appsId: string;
1456
1588
  /** JSONP */
@@ -1475,11 +1607,11 @@ declare namespace gapi.client {
1475
1607
  create(
1476
1608
  request: {
1477
1609
  /** V1 error format. */
1478
- '$.xgafv'?: string;
1610
+ '$.xgafv'?: '1' | '2';
1479
1611
  /** OAuth access token. */
1480
1612
  access_token?: string;
1481
1613
  /** Data format for response. */
1482
- alt?: string;
1614
+ alt?: 'json' | 'media' | 'proto';
1483
1615
  /** Part of `parent`. Required. Name of the parent Firewall collection in which to create a new rule. Example: apps/myapp/firewall/ingressRules. */
1484
1616
  appsId: string;
1485
1617
  /** JSONP */
@@ -1504,11 +1636,11 @@ declare namespace gapi.client {
1504
1636
  /** Deletes the specified firewall rule. */
1505
1637
  delete(request?: {
1506
1638
  /** V1 error format. */
1507
- '$.xgafv'?: string;
1639
+ '$.xgafv'?: '1' | '2';
1508
1640
  /** OAuth access token. */
1509
1641
  access_token?: string;
1510
1642
  /** Data format for response. */
1511
- alt?: string;
1643
+ alt?: 'json' | 'media' | 'proto';
1512
1644
  /** Part of `name`. Name of the Firewall resource to delete. Example: apps/myapp/firewall/ingressRules/100. */
1513
1645
  appsId: string;
1514
1646
  /** JSONP */
@@ -1533,11 +1665,11 @@ declare namespace gapi.client {
1533
1665
  /** Gets the specified firewall rule. */
1534
1666
  get(request?: {
1535
1667
  /** V1 error format. */
1536
- '$.xgafv'?: string;
1668
+ '$.xgafv'?: '1' | '2';
1537
1669
  /** OAuth access token. */
1538
1670
  access_token?: string;
1539
1671
  /** Data format for response. */
1540
- alt?: string;
1672
+ alt?: 'json' | 'media' | 'proto';
1541
1673
  /** Part of `name`. Name of the Firewall resource to retrieve. Example: apps/myapp/firewall/ingressRules/100. */
1542
1674
  appsId: string;
1543
1675
  /** JSONP */
@@ -1562,11 +1694,11 @@ declare namespace gapi.client {
1562
1694
  /** Lists the firewall rules of an application. */
1563
1695
  list(request?: {
1564
1696
  /** V1 error format. */
1565
- '$.xgafv'?: string;
1697
+ '$.xgafv'?: '1' | '2';
1566
1698
  /** OAuth access token. */
1567
1699
  access_token?: string;
1568
1700
  /** Data format for response. */
1569
- alt?: string;
1701
+ alt?: 'json' | 'media' | 'proto';
1570
1702
  /** Part of `parent`. Name of the Firewall collection to retrieve. Example: apps/myapp/firewall/ingressRules. */
1571
1703
  appsId: string;
1572
1704
  /** JSONP */
@@ -1595,11 +1727,11 @@ declare namespace gapi.client {
1595
1727
  /** Updates the specified firewall rule. */
1596
1728
  patch(request: {
1597
1729
  /** V1 error format. */
1598
- '$.xgafv'?: string;
1730
+ '$.xgafv'?: '1' | '2';
1599
1731
  /** OAuth access token. */
1600
1732
  access_token?: string;
1601
1733
  /** Data format for response. */
1602
- alt?: string;
1734
+ alt?: 'json' | 'media' | 'proto';
1603
1735
  /** Part of `name`. Name of the Firewall resource to update. Example: apps/myapp/firewall/ingressRules/100. */
1604
1736
  appsId: string;
1605
1737
  /** JSONP */
@@ -1628,11 +1760,11 @@ declare namespace gapi.client {
1628
1760
  patch(
1629
1761
  request: {
1630
1762
  /** V1 error format. */
1631
- '$.xgafv'?: string;
1763
+ '$.xgafv'?: '1' | '2';
1632
1764
  /** OAuth access token. */
1633
1765
  access_token?: string;
1634
1766
  /** Data format for response. */
1635
- alt?: string;
1767
+ alt?: 'json' | 'media' | 'proto';
1636
1768
  /** Part of `name`. Name of the Firewall resource to update. Example: apps/myapp/firewall/ingressRules/100. */
1637
1769
  appsId: string;
1638
1770
  /** JSONP */
@@ -1666,11 +1798,11 @@ declare namespace gapi.client {
1666
1798
  /** Gets information about a location. */
1667
1799
  get(request?: {
1668
1800
  /** V1 error format. */
1669
- '$.xgafv'?: string;
1801
+ '$.xgafv'?: '1' | '2';
1670
1802
  /** OAuth access token. */
1671
1803
  access_token?: string;
1672
1804
  /** Data format for response. */
1673
- alt?: string;
1805
+ alt?: 'json' | 'media' | 'proto';
1674
1806
  /** Part of `name`. Resource name for the location. */
1675
1807
  appsId: string;
1676
1808
  /** JSONP */
@@ -1692,19 +1824,19 @@ declare namespace gapi.client {
1692
1824
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1693
1825
  uploadType?: string;
1694
1826
  }): Request<Location>;
1695
- /** 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. */
1827
+ /** Lists information about the supported locations for this service.This method lists locations based on the resource scope provided in the ListLocationsRequest.name field: Global locations: If name is empty, the method lists the public locations available to all projects. Project-specific locations: If name follows the format projects/{project}, the method lists locations visible to that specific project. This includes public, private, or other project-specific locations enabled for the project.For gRPC and client library implementations, the resource name is passed as the name field. For direct service calls, the resource name is incorporated into the request path based on the specific service implementation and version. */
1696
1828
  list(request?: {
1697
1829
  /** V1 error format. */
1698
- '$.xgafv'?: string;
1830
+ '$.xgafv'?: '1' | '2';
1699
1831
  /** OAuth access token. */
1700
1832
  access_token?: string;
1701
1833
  /** Data format for response. */
1702
- alt?: string;
1834
+ alt?: 'json' | 'media' | 'proto';
1703
1835
  /** Part of `name`. The resource that owns the locations collection, if applicable. */
1704
1836
  appsId: string;
1705
1837
  /** JSONP */
1706
1838
  callback?: string;
1707
- /** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented otherwise. This is primarily for internal usage. */
1839
+ /** Optional. Do not use this field unless explicitly documented otherwise. This is primarily for internal usage. */
1708
1840
  extraLocationTypes?: string | string[];
1709
1841
  /** Selector specifying which fields to include in a partial response. */
1710
1842
  fields?: string;
@@ -1732,11 +1864,11 @@ declare namespace gapi.client {
1732
1864
  /** 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. */
1733
1865
  get(request?: {
1734
1866
  /** V1 error format. */
1735
- '$.xgafv'?: string;
1867
+ '$.xgafv'?: '1' | '2';
1736
1868
  /** OAuth access token. */
1737
1869
  access_token?: string;
1738
1870
  /** Data format for response. */
1739
- alt?: string;
1871
+ alt?: 'json' | 'media' | 'proto';
1740
1872
  /** Part of `name`. The name of the operation resource. */
1741
1873
  appsId: string;
1742
1874
  /** JSONP */
@@ -1761,11 +1893,11 @@ declare namespace gapi.client {
1761
1893
  /** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns UNIMPLEMENTED. */
1762
1894
  list(request?: {
1763
1895
  /** V1 error format. */
1764
- '$.xgafv'?: string;
1896
+ '$.xgafv'?: '1' | '2';
1765
1897
  /** OAuth access token. */
1766
1898
  access_token?: string;
1767
1899
  /** Data format for response. */
1768
- alt?: string;
1900
+ alt?: 'json' | 'media' | 'proto';
1769
1901
  /** Part of `name`. The name of the operation's parent resource. */
1770
1902
  appsId: string;
1771
1903
  /** JSONP */
@@ -1798,11 +1930,11 @@ declare namespace gapi.client {
1798
1930
  /** Enables debugging on a VM instance. This allows you to use the SSH command to connect to the virtual machine where the instance lives. While in "debug mode", the instance continues to serve live traffic. You should delete the instance when you are done debugging and then allow the system to take over and determine if another instance should be started.Only applicable for instances in App Engine flexible environment. */
1799
1931
  debug(request: {
1800
1932
  /** V1 error format. */
1801
- '$.xgafv'?: string;
1933
+ '$.xgafv'?: '1' | '2';
1802
1934
  /** OAuth access token. */
1803
1935
  access_token?: string;
1804
1936
  /** Data format for response. */
1805
- alt?: string;
1937
+ alt?: 'json' | 'media' | 'proto';
1806
1938
  /** Part of `name`. Required. Name of the resource requested. Example: apps/myapp/services/default/versions/v1/instances/instance-1. */
1807
1939
  appsId: string;
1808
1940
  /** JSONP */
@@ -1833,11 +1965,11 @@ declare namespace gapi.client {
1833
1965
  debug(
1834
1966
  request: {
1835
1967
  /** V1 error format. */
1836
- '$.xgafv'?: string;
1968
+ '$.xgafv'?: '1' | '2';
1837
1969
  /** OAuth access token. */
1838
1970
  access_token?: string;
1839
1971
  /** Data format for response. */
1840
- alt?: string;
1972
+ alt?: 'json' | 'media' | 'proto';
1841
1973
  /** Part of `name`. Required. Name of the resource requested. Example: apps/myapp/services/default/versions/v1/instances/instance-1. */
1842
1974
  appsId: string;
1843
1975
  /** JSONP */
@@ -1868,11 +2000,11 @@ declare namespace gapi.client {
1868
2000
  /** Stops a running instance.The instance might be automatically recreated based on the scaling settings of the version. For more information, see "How Instances are Managed" (standard environment (https://cloud.google.com/appengine/docs/standard/python/how-instances-are-managed) | flexible environment (https://cloud.google.com/appengine/docs/flexible/python/how-instances-are-managed)).To ensure that instances are not re-created and avoid getting billed, you can stop all instances within the target version by changing the serving status of the version to STOPPED with the apps.services.versions.patch (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions/patch) method. */
1869
2001
  delete(request?: {
1870
2002
  /** V1 error format. */
1871
- '$.xgafv'?: string;
2003
+ '$.xgafv'?: '1' | '2';
1872
2004
  /** OAuth access token. */
1873
2005
  access_token?: string;
1874
2006
  /** Data format for response. */
1875
- alt?: string;
2007
+ alt?: 'json' | 'media' | 'proto';
1876
2008
  /** Part of `name`. Required. Name of the resource requested. Example: apps/myapp/services/default/versions/v1/instances/instance-1. */
1877
2009
  appsId: string;
1878
2010
  /** JSONP */
@@ -1901,11 +2033,11 @@ declare namespace gapi.client {
1901
2033
  /** Gets instance information. */
1902
2034
  get(request?: {
1903
2035
  /** V1 error format. */
1904
- '$.xgafv'?: string;
2036
+ '$.xgafv'?: '1' | '2';
1905
2037
  /** OAuth access token. */
1906
2038
  access_token?: string;
1907
2039
  /** Data format for response. */
1908
- alt?: string;
2040
+ alt?: 'json' | 'media' | 'proto';
1909
2041
  /** Part of `name`. Required. Name of the resource requested. Example: apps/myapp/services/default/versions/v1/instances/instance-1. */
1910
2042
  appsId: string;
1911
2043
  /** JSONP */
@@ -1934,11 +2066,11 @@ declare namespace gapi.client {
1934
2066
  /** Lists the instances of a version.Tip: To aggregate details about instances over time, see the Stackdriver Monitoring API (https://cloud.google.com/monitoring/api/ref_v3/rest/v3/projects.timeSeries/list). */
1935
2067
  list(request?: {
1936
2068
  /** V1 error format. */
1937
- '$.xgafv'?: string;
2069
+ '$.xgafv'?: '1' | '2';
1938
2070
  /** OAuth access token. */
1939
2071
  access_token?: string;
1940
2072
  /** Data format for response. */
1941
- alt?: string;
2073
+ alt?: 'json' | 'media' | 'proto';
1942
2074
  /** Part of `parent`. Required. Name of the parent Version resource. Example: apps/myapp/services/default/versions/v1. */
1943
2075
  appsId: string;
1944
2076
  /** JSONP */
@@ -1971,11 +2103,11 @@ declare namespace gapi.client {
1971
2103
  /** Deploys code and resource files to a new version. */
1972
2104
  create(request: {
1973
2105
  /** V1 error format. */
1974
- '$.xgafv'?: string;
2106
+ '$.xgafv'?: '1' | '2';
1975
2107
  /** OAuth access token. */
1976
2108
  access_token?: string;
1977
2109
  /** Data format for response. */
1978
- alt?: string;
2110
+ alt?: 'json' | 'media' | 'proto';
1979
2111
  /** Part of `parent`. Required. Name of the parent resource to create this version under. Example: apps/myapp/services/default. */
1980
2112
  appsId: string;
1981
2113
  /** JSONP */
@@ -2002,11 +2134,11 @@ declare namespace gapi.client {
2002
2134
  create(
2003
2135
  request: {
2004
2136
  /** V1 error format. */
2005
- '$.xgafv'?: string;
2137
+ '$.xgafv'?: '1' | '2';
2006
2138
  /** OAuth access token. */
2007
2139
  access_token?: string;
2008
2140
  /** Data format for response. */
2009
- alt?: string;
2141
+ alt?: 'json' | 'media' | 'proto';
2010
2142
  /** Part of `parent`. Required. Name of the parent resource to create this version under. Example: apps/myapp/services/default. */
2011
2143
  appsId: string;
2012
2144
  /** JSONP */
@@ -2033,11 +2165,11 @@ declare namespace gapi.client {
2033
2165
  /** Deletes an existing Version resource. */
2034
2166
  delete(request?: {
2035
2167
  /** V1 error format. */
2036
- '$.xgafv'?: string;
2168
+ '$.xgafv'?: '1' | '2';
2037
2169
  /** OAuth access token. */
2038
2170
  access_token?: string;
2039
2171
  /** Data format for response. */
2040
- alt?: string;
2172
+ alt?: 'json' | 'media' | 'proto';
2041
2173
  /** Part of `name`. Required. Name of the resource requested. Example: apps/myapp/services/default/versions/v1. */
2042
2174
  appsId: string;
2043
2175
  /** JSONP */
@@ -2064,11 +2196,11 @@ declare namespace gapi.client {
2064
2196
  /** Exports a user image to Artifact Registry. */
2065
2197
  exportAppImage(request: {
2066
2198
  /** V1 error format. */
2067
- '$.xgafv'?: string;
2199
+ '$.xgafv'?: '1' | '2';
2068
2200
  /** OAuth access token. */
2069
2201
  access_token?: string;
2070
2202
  /** Data format for response. */
2071
- alt?: string;
2203
+ alt?: 'json' | 'media' | 'proto';
2072
2204
  /** Part of `name`. Required. Name of the App Engine version resource. Format: apps/{app}/services/{service}/versions/{version} */
2073
2205
  appsId: string;
2074
2206
  /** JSONP */
@@ -2097,11 +2229,11 @@ declare namespace gapi.client {
2097
2229
  exportAppImage(
2098
2230
  request: {
2099
2231
  /** V1 error format. */
2100
- '$.xgafv'?: string;
2232
+ '$.xgafv'?: '1' | '2';
2101
2233
  /** OAuth access token. */
2102
2234
  access_token?: string;
2103
2235
  /** Data format for response. */
2104
- alt?: string;
2236
+ alt?: 'json' | 'media' | 'proto';
2105
2237
  /** Part of `name`. Required. Name of the App Engine version resource. Format: apps/{app}/services/{service}/versions/{version} */
2106
2238
  appsId: string;
2107
2239
  /** JSONP */
@@ -2130,11 +2262,11 @@ declare namespace gapi.client {
2130
2262
  /** Gets the specified Version resource. By default, only a BASIC_VIEW will be returned. Specify the FULL_VIEW parameter to get the full resource. */
2131
2263
  get(request?: {
2132
2264
  /** V1 error format. */
2133
- '$.xgafv'?: string;
2265
+ '$.xgafv'?: '1' | '2';
2134
2266
  /** OAuth access token. */
2135
2267
  access_token?: string;
2136
2268
  /** Data format for response. */
2137
- alt?: string;
2269
+ alt?: 'json' | 'media' | 'proto';
2138
2270
  /** Part of `name`. Required. Name of the resource requested. Example: apps/myapp/services/default/versions/v1. */
2139
2271
  appsId: string;
2140
2272
  /** JSONP */
@@ -2142,7 +2274,10 @@ declare namespace gapi.client {
2142
2274
  /** Selector specifying which fields to include in a partial response. */
2143
2275
  fields?: string;
2144
2276
  /** Optional. Options to include extra data */
2145
- includeExtraData?: string;
2277
+ includeExtraData?:
2278
+ | 'INCLUDE_EXTRA_DATA_UNSPECIFIED'
2279
+ | 'INCLUDE_EXTRA_DATA_NONE'
2280
+ | 'INCLUDE_GOOGLE_GENERATED_METADATA';
2146
2281
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2147
2282
  key?: string;
2148
2283
  /** OAuth 2.0 token for the current user. */
@@ -2160,16 +2295,16 @@ declare namespace gapi.client {
2160
2295
  /** Part of `name`. See documentation of `appsId`. */
2161
2296
  versionsId: string;
2162
2297
  /** Controls the set of fields returned in the Get response. */
2163
- view?: string;
2298
+ view?: 'BASIC' | 'FULL';
2164
2299
  }): Request<Version>;
2165
2300
  /** Lists the versions of a service. */
2166
2301
  list(request?: {
2167
2302
  /** V1 error format. */
2168
- '$.xgafv'?: string;
2303
+ '$.xgafv'?: '1' | '2';
2169
2304
  /** OAuth access token. */
2170
2305
  access_token?: string;
2171
2306
  /** Data format for response. */
2172
- alt?: string;
2307
+ alt?: 'json' | 'media' | 'proto';
2173
2308
  /** Part of `parent`. Required. Name of the parent Service resource. Example: apps/myapp/services/default. */
2174
2309
  appsId: string;
2175
2310
  /** JSONP */
@@ -2195,16 +2330,16 @@ declare namespace gapi.client {
2195
2330
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2196
2331
  uploadType?: string;
2197
2332
  /** Controls the set of fields returned in the List response. */
2198
- view?: string;
2333
+ view?: 'BASIC' | 'FULL';
2199
2334
  }): Request<ListVersionsResponse>;
2200
2335
  /** Updates the specified Version resource. You can specify the following fields depending on the App Engine environment and type of scaling that the version resource uses:Standard environment instance_class (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#Version.FIELDS.instance_class)automatic scaling in the standard environment: automatic_scaling.min_idle_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#Version.FIELDS.automatic_scaling) automatic_scaling.max_idle_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#Version.FIELDS.automatic_scaling) automaticScaling.standard_scheduler_settings.max_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#StandardSchedulerSettings) automaticScaling.standard_scheduler_settings.min_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#StandardSchedulerSettings) automaticScaling.standard_scheduler_settings.target_cpu_utilization (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#StandardSchedulerSettings) automaticScaling.standard_scheduler_settings.target_throughput_utilization (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#StandardSchedulerSettings)basic scaling or manual scaling in the standard environment: serving_status (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#Version.FIELDS.serving_status) manual_scaling.instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#manualscaling)Flexible environment serving_status (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#Version.FIELDS.serving_status)automatic scaling in the flexible environment: automatic_scaling.min_total_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#Version.FIELDS.automatic_scaling) automatic_scaling.max_total_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#Version.FIELDS.automatic_scaling) automatic_scaling.cool_down_period_sec (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#Version.FIELDS.automatic_scaling) automatic_scaling.cpu_utilization.target_utilization (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#Version.FIELDS.automatic_scaling)manual scaling in the flexible environment: manual_scaling.instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#manualscaling) */
2201
2336
  patch(request: {
2202
2337
  /** V1 error format. */
2203
- '$.xgafv'?: string;
2338
+ '$.xgafv'?: '1' | '2';
2204
2339
  /** OAuth access token. */
2205
2340
  access_token?: string;
2206
2341
  /** Data format for response. */
2207
- alt?: string;
2342
+ alt?: 'json' | 'media' | 'proto';
2208
2343
  /** Part of `name`. Required. Name of the resource to update. Example: apps/myapp/services/default/versions/1. */
2209
2344
  appsId: string;
2210
2345
  /** JSONP */
@@ -2235,11 +2370,11 @@ declare namespace gapi.client {
2235
2370
  patch(
2236
2371
  request: {
2237
2372
  /** V1 error format. */
2238
- '$.xgafv'?: string;
2373
+ '$.xgafv'?: '1' | '2';
2239
2374
  /** OAuth access token. */
2240
2375
  access_token?: string;
2241
2376
  /** Data format for response. */
2242
- alt?: string;
2377
+ alt?: 'json' | 'media' | 'proto';
2243
2378
  /** Part of `name`. Required. Name of the resource to update. Example: apps/myapp/services/default/versions/1. */
2244
2379
  appsId: string;
2245
2380
  /** JSONP */
@@ -2273,11 +2408,11 @@ declare namespace gapi.client {
2273
2408
  /** Deletes the specified service and all enclosed versions. */
2274
2409
  delete(request?: {
2275
2410
  /** V1 error format. */
2276
- '$.xgafv'?: string;
2411
+ '$.xgafv'?: '1' | '2';
2277
2412
  /** OAuth access token. */
2278
2413
  access_token?: string;
2279
2414
  /** Data format for response. */
2280
- alt?: string;
2415
+ alt?: 'json' | 'media' | 'proto';
2281
2416
  /** Part of `name`. Required. Name of the resource requested. Example: apps/myapp/services/default. */
2282
2417
  appsId: string;
2283
2418
  /** JSONP */
@@ -2302,11 +2437,11 @@ declare namespace gapi.client {
2302
2437
  /** Gets the current configuration of the specified service. */
2303
2438
  get(request?: {
2304
2439
  /** V1 error format. */
2305
- '$.xgafv'?: string;
2440
+ '$.xgafv'?: '1' | '2';
2306
2441
  /** OAuth access token. */
2307
2442
  access_token?: string;
2308
2443
  /** Data format for response. */
2309
- alt?: string;
2444
+ alt?: 'json' | 'media' | 'proto';
2310
2445
  /** Part of `name`. Required. Name of the resource requested. Example: apps/myapp/services/default. */
2311
2446
  appsId: string;
2312
2447
  /** JSONP */
@@ -2314,7 +2449,10 @@ declare namespace gapi.client {
2314
2449
  /** Selector specifying which fields to include in a partial response. */
2315
2450
  fields?: string;
2316
2451
  /** Optional. Options to include extra data */
2317
- includeExtraData?: string;
2452
+ includeExtraData?:
2453
+ | 'INCLUDE_EXTRA_DATA_UNSPECIFIED'
2454
+ | 'INCLUDE_EXTRA_DATA_NONE'
2455
+ | 'INCLUDE_GOOGLE_GENERATED_METADATA';
2318
2456
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2319
2457
  key?: string;
2320
2458
  /** OAuth 2.0 token for the current user. */
@@ -2333,11 +2471,11 @@ declare namespace gapi.client {
2333
2471
  /** Lists all the services in the application. */
2334
2472
  list(request?: {
2335
2473
  /** V1 error format. */
2336
- '$.xgafv'?: string;
2474
+ '$.xgafv'?: '1' | '2';
2337
2475
  /** OAuth access token. */
2338
2476
  access_token?: string;
2339
2477
  /** Data format for response. */
2340
- alt?: string;
2478
+ alt?: 'json' | 'media' | 'proto';
2341
2479
  /** Part of `parent`. Required. Name of the parent Application resource. Example: apps/myapp. */
2342
2480
  appsId: string;
2343
2481
  /** JSONP */
@@ -2364,11 +2502,11 @@ declare namespace gapi.client {
2364
2502
  /** Updates the configuration of the specified service. */
2365
2503
  patch(request: {
2366
2504
  /** V1 error format. */
2367
- '$.xgafv'?: string;
2505
+ '$.xgafv'?: '1' | '2';
2368
2506
  /** OAuth access token. */
2369
2507
  access_token?: string;
2370
2508
  /** Data format for response. */
2371
- alt?: string;
2509
+ alt?: 'json' | 'media' | 'proto';
2372
2510
  /** Part of `name`. Required. Name of the resource to update. Example: apps/myapp/services/default. */
2373
2511
  appsId: string;
2374
2512
  /** JSONP */
@@ -2399,11 +2537,11 @@ declare namespace gapi.client {
2399
2537
  patch(
2400
2538
  request: {
2401
2539
  /** V1 error format. */
2402
- '$.xgafv'?: string;
2540
+ '$.xgafv'?: '1' | '2';
2403
2541
  /** OAuth access token. */
2404
2542
  access_token?: string;
2405
2543
  /** Data format for response. */
2406
- alt?: string;
2544
+ alt?: 'json' | 'media' | 'proto';
2407
2545
  /** Part of `name`. Required. Name of the resource to update. Example: apps/myapp/services/default. */
2408
2546
  appsId: string;
2409
2547
  /** JSONP */
@@ -2437,11 +2575,11 @@ declare namespace gapi.client {
2437
2575
  /** Creates an App Engine application for a Google Cloud Platform project. Required fields: id - The ID of the target Cloud Platform project. location - The region (https://cloud.google.com/appengine/docs/locations) where you want the App Engine application located.For more information about App Engine applications, see Managing Projects, Applications, and Billing (https://cloud.google.com/appengine/docs/standard/python/console/). */
2438
2576
  create(request: {
2439
2577
  /** V1 error format. */
2440
- '$.xgafv'?: string;
2578
+ '$.xgafv'?: '1' | '2';
2441
2579
  /** OAuth access token. */
2442
2580
  access_token?: string;
2443
2581
  /** Data format for response. */
2444
- alt?: string;
2582
+ alt?: 'json' | 'media' | 'proto';
2445
2583
  /** JSONP */
2446
2584
  callback?: string;
2447
2585
  /** Selector specifying which fields to include in a partial response. */
@@ -2464,11 +2602,11 @@ declare namespace gapi.client {
2464
2602
  create(
2465
2603
  request: {
2466
2604
  /** V1 error format. */
2467
- '$.xgafv'?: string;
2605
+ '$.xgafv'?: '1' | '2';
2468
2606
  /** OAuth access token. */
2469
2607
  access_token?: string;
2470
2608
  /** Data format for response. */
2471
- alt?: string;
2609
+ alt?: 'json' | 'media' | 'proto';
2472
2610
  /** JSONP */
2473
2611
  callback?: string;
2474
2612
  /** Selector specifying which fields to include in a partial response. */
@@ -2491,11 +2629,11 @@ declare namespace gapi.client {
2491
2629
  /** Gets information about an application. */
2492
2630
  get(request?: {
2493
2631
  /** V1 error format. */
2494
- '$.xgafv'?: string;
2632
+ '$.xgafv'?: '1' | '2';
2495
2633
  /** OAuth access token. */
2496
2634
  access_token?: string;
2497
2635
  /** Data format for response. */
2498
- alt?: string;
2636
+ alt?: 'json' | 'media' | 'proto';
2499
2637
  /** Part of `name`. Required. Name of the Application resource to get. Example: apps/myapp. */
2500
2638
  appsId: string;
2501
2639
  /** JSONP */
@@ -2503,7 +2641,10 @@ declare namespace gapi.client {
2503
2641
  /** Selector specifying which fields to include in a partial response. */
2504
2642
  fields?: string;
2505
2643
  /** Optional. Options to include extra data */
2506
- includeExtraData?: string;
2644
+ includeExtraData?:
2645
+ | 'INCLUDE_EXTRA_DATA_UNSPECIFIED'
2646
+ | 'INCLUDE_EXTRA_DATA_NONE'
2647
+ | 'INCLUDE_GOOGLE_GENERATED_METADATA';
2507
2648
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2508
2649
  key?: string;
2509
2650
  /** OAuth 2.0 token for the current user. */
@@ -2520,17 +2661,17 @@ declare namespace gapi.client {
2520
2661
  /** Lists all the available runtimes for the application. */
2521
2662
  listRuntimes(request?: {
2522
2663
  /** V1 error format. */
2523
- '$.xgafv'?: string;
2664
+ '$.xgafv'?: '1' | '2';
2524
2665
  /** OAuth access token. */
2525
2666
  access_token?: string;
2526
2667
  /** Data format for response. */
2527
- alt?: string;
2668
+ alt?: 'json' | 'media' | 'proto';
2528
2669
  /** Part of `parent`. Required. Name of the parent Application resource. Example: apps/myapp. */
2529
2670
  appsId: string;
2530
2671
  /** JSONP */
2531
2672
  callback?: string;
2532
2673
  /** Optional. The environment of the Application. */
2533
- environment?: string;
2674
+ environment?: 'ENVIRONMENT_UNSPECIFIED' | 'STANDARD' | 'FLEXIBLE';
2534
2675
  /** Selector specifying which fields to include in a partial response. */
2535
2676
  fields?: string;
2536
2677
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
@@ -2549,11 +2690,11 @@ declare namespace gapi.client {
2549
2690
  /** Updates the specified Application resource. You can update the following fields: auth_domain - Google authentication domain for controlling user access to the application. default_cookie_expiration - Cookie expiration policy for the application. iap - Identity-Aware Proxy properties for the application. */
2550
2691
  patch(request: {
2551
2692
  /** V1 error format. */
2552
- '$.xgafv'?: string;
2693
+ '$.xgafv'?: '1' | '2';
2553
2694
  /** OAuth access token. */
2554
2695
  access_token?: string;
2555
2696
  /** Data format for response. */
2556
- alt?: string;
2697
+ alt?: 'json' | 'media' | 'proto';
2557
2698
  /** Part of `name`. Required. Name of the Application resource to update. Example: apps/myapp. */
2558
2699
  appsId: string;
2559
2700
  /** JSONP */
@@ -2580,11 +2721,11 @@ declare namespace gapi.client {
2580
2721
  patch(
2581
2722
  request: {
2582
2723
  /** V1 error format. */
2583
- '$.xgafv'?: string;
2724
+ '$.xgafv'?: '1' | '2';
2584
2725
  /** OAuth access token. */
2585
2726
  access_token?: string;
2586
2727
  /** Data format for response. */
2587
- alt?: string;
2728
+ alt?: 'json' | 'media' | 'proto';
2588
2729
  /** Part of `name`. Required. Name of the Application resource to update. Example: apps/myapp. */
2589
2730
  appsId: string;
2590
2731
  /** JSONP */
@@ -2611,11 +2752,11 @@ declare namespace gapi.client {
2611
2752
  /** Recreates the required App Engine features for the specified App Engine application, for example a Cloud Storage bucket or App Engine service account. Use this method if you receive an error message about a missing feature, for example, Error retrieving the App Engine service account. If you have deleted your App Engine service account, this will not be able to recreate it. Instead, you should attempt to use the IAM undelete API if possible at https://cloud.google.com/iam/reference/rest/v1/projects.serviceAccounts/undelete?apix_params=%7B"name"%3A"projects%2F-%2FserviceAccounts%2Funique_id"%2C"resource"%3A%7B%7D%7D . If the deletion was recent, the numeric ID can be found in the Cloud Console Activity Log. */
2612
2753
  repair(request: {
2613
2754
  /** V1 error format. */
2614
- '$.xgafv'?: string;
2755
+ '$.xgafv'?: '1' | '2';
2615
2756
  /** OAuth access token. */
2616
2757
  access_token?: string;
2617
2758
  /** Data format for response. */
2618
- alt?: string;
2759
+ alt?: 'json' | 'media' | 'proto';
2619
2760
  /** Part of `name`. Required. Name of the application to repair. Example: apps/myapp */
2620
2761
  appsId: string;
2621
2762
  /** JSONP */
@@ -2640,11 +2781,11 @@ declare namespace gapi.client {
2640
2781
  repair(
2641
2782
  request: {
2642
2783
  /** V1 error format. */
2643
- '$.xgafv'?: string;
2784
+ '$.xgafv'?: '1' | '2';
2644
2785
  /** OAuth access token. */
2645
2786
  access_token?: string;
2646
2787
  /** Data format for response. */
2647
- alt?: string;
2788
+ alt?: 'json' | 'media' | 'proto';
2648
2789
  /** Part of `name`. Required. Name of the application to repair. Example: apps/myapp */
2649
2790
  appsId: string;
2650
2791
  /** JSONP */
@@ -2678,11 +2819,11 @@ declare namespace gapi.client {
2678
2819
  /** Uploads the specified SSL certificate. */
2679
2820
  create(request: {
2680
2821
  /** V1 error format. */
2681
- '$.xgafv'?: string;
2822
+ '$.xgafv'?: '1' | '2';
2682
2823
  /** OAuth access token. */
2683
2824
  access_token?: string;
2684
2825
  /** Data format for response. */
2685
- alt?: string;
2826
+ alt?: 'json' | 'media' | 'proto';
2686
2827
  /** Part of `parent`. See documentation of `projectsId`. */
2687
2828
  applicationsId: string;
2688
2829
  /** JSONP */
@@ -2711,11 +2852,11 @@ declare namespace gapi.client {
2711
2852
  create(
2712
2853
  request: {
2713
2854
  /** V1 error format. */
2714
- '$.xgafv'?: string;
2855
+ '$.xgafv'?: '1' | '2';
2715
2856
  /** OAuth access token. */
2716
2857
  access_token?: string;
2717
2858
  /** Data format for response. */
2718
- alt?: string;
2859
+ alt?: 'json' | 'media' | 'proto';
2719
2860
  /** Part of `parent`. See documentation of `projectsId`. */
2720
2861
  applicationsId: string;
2721
2862
  /** JSONP */
@@ -2744,11 +2885,11 @@ declare namespace gapi.client {
2744
2885
  /** Deletes the specified SSL certificate. */
2745
2886
  delete(request?: {
2746
2887
  /** V1 error format. */
2747
- '$.xgafv'?: string;
2888
+ '$.xgafv'?: '1' | '2';
2748
2889
  /** OAuth access token. */
2749
2890
  access_token?: string;
2750
2891
  /** Data format for response. */
2751
- alt?: string;
2892
+ alt?: 'json' | 'media' | 'proto';
2752
2893
  /** Part of `name`. See documentation of `projectsId`. */
2753
2894
  applicationsId: string;
2754
2895
  /** Part of `name`. See documentation of `projectsId`. */
@@ -2777,11 +2918,11 @@ declare namespace gapi.client {
2777
2918
  /** Gets the specified SSL certificate. */
2778
2919
  get(request?: {
2779
2920
  /** V1 error format. */
2780
- '$.xgafv'?: string;
2921
+ '$.xgafv'?: '1' | '2';
2781
2922
  /** OAuth access token. */
2782
2923
  access_token?: string;
2783
2924
  /** Data format for response. */
2784
- alt?: string;
2925
+ alt?: 'json' | 'media' | 'proto';
2785
2926
  /** Part of `name`. See documentation of `projectsId`. */
2786
2927
  applicationsId: string;
2787
2928
  /** Part of `name`. See documentation of `projectsId`. */
@@ -2807,16 +2948,16 @@ declare namespace gapi.client {
2807
2948
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2808
2949
  uploadType?: string;
2809
2950
  /** Controls the set of fields returned in the GET response. */
2810
- view?: string;
2951
+ view?: 'BASIC_CERTIFICATE' | 'FULL_CERTIFICATE';
2811
2952
  }): Request<AuthorizedCertificate>;
2812
2953
  /** Lists all SSL certificates the user is authorized to administer. */
2813
2954
  list(request?: {
2814
2955
  /** V1 error format. */
2815
- '$.xgafv'?: string;
2956
+ '$.xgafv'?: '1' | '2';
2816
2957
  /** OAuth access token. */
2817
2958
  access_token?: string;
2818
2959
  /** Data format for response. */
2819
- alt?: string;
2960
+ alt?: 'json' | 'media' | 'proto';
2820
2961
  /** Part of `parent`. See documentation of `projectsId`. */
2821
2962
  applicationsId: string;
2822
2963
  /** JSONP */
@@ -2844,16 +2985,16 @@ declare namespace gapi.client {
2844
2985
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2845
2986
  uploadType?: string;
2846
2987
  /** Controls the set of fields returned in the LIST response. */
2847
- view?: string;
2988
+ view?: 'BASIC_CERTIFICATE' | 'FULL_CERTIFICATE';
2848
2989
  }): Request<ListAuthorizedCertificatesResponse>;
2849
2990
  /** Updates the specified SSL certificate. To renew a certificate and maintain its existing domain mappings, update certificate_data with a new certificate. The new certificate must be applicable to the same domains as the original certificate. The certificate display_name may also be updated. */
2850
2991
  patch(request: {
2851
2992
  /** V1 error format. */
2852
- '$.xgafv'?: string;
2993
+ '$.xgafv'?: '1' | '2';
2853
2994
  /** OAuth access token. */
2854
2995
  access_token?: string;
2855
2996
  /** Data format for response. */
2856
- alt?: string;
2997
+ alt?: 'json' | 'media' | 'proto';
2857
2998
  /** Part of `name`. See documentation of `projectsId`. */
2858
2999
  applicationsId: string;
2859
3000
  /** Part of `name`. See documentation of `projectsId`. */
@@ -2886,11 +3027,11 @@ declare namespace gapi.client {
2886
3027
  patch(
2887
3028
  request: {
2888
3029
  /** V1 error format. */
2889
- '$.xgafv'?: string;
3030
+ '$.xgafv'?: '1' | '2';
2890
3031
  /** OAuth access token. */
2891
3032
  access_token?: string;
2892
3033
  /** Data format for response. */
2893
- alt?: string;
3034
+ alt?: 'json' | 'media' | 'proto';
2894
3035
  /** Part of `name`. See documentation of `projectsId`. */
2895
3036
  applicationsId: string;
2896
3037
  /** Part of `name`. See documentation of `projectsId`. */
@@ -2925,11 +3066,11 @@ declare namespace gapi.client {
2925
3066
  /** Lists all domains the user is authorized to administer. */
2926
3067
  list(request?: {
2927
3068
  /** V1 error format. */
2928
- '$.xgafv'?: string;
3069
+ '$.xgafv'?: '1' | '2';
2929
3070
  /** OAuth access token. */
2930
3071
  access_token?: string;
2931
3072
  /** Data format for response. */
2932
- alt?: string;
3073
+ alt?: 'json' | 'media' | 'proto';
2933
3074
  /** Part of `parent`. See documentation of `projectsId`. */
2934
3075
  applicationsId: string;
2935
3076
  /** JSONP */
@@ -2962,11 +3103,11 @@ declare namespace gapi.client {
2962
3103
  /** Maps a domain to an application. A user must be authorized to administer a domain in order to map it to an application. For a list of available authorized domains, see AuthorizedDomains.ListAuthorizedDomains. */
2963
3104
  create(request: {
2964
3105
  /** V1 error format. */
2965
- '$.xgafv'?: string;
3106
+ '$.xgafv'?: '1' | '2';
2966
3107
  /** OAuth access token. */
2967
3108
  access_token?: string;
2968
3109
  /** Data format for response. */
2969
- alt?: string;
3110
+ alt?: 'json' | 'media' | 'proto';
2970
3111
  /** Part of `parent`. See documentation of `projectsId`. */
2971
3112
  applicationsId: string;
2972
3113
  /** JSONP */
@@ -2980,7 +3121,10 @@ declare namespace gapi.client {
2980
3121
  /** OAuth 2.0 token for the current user. */
2981
3122
  oauth_token?: string;
2982
3123
  /** Whether the domain creation should override any existing mappings for this domain. By default, overrides are rejected. */
2983
- overrideStrategy?: string;
3124
+ overrideStrategy?:
3125
+ | 'UNSPECIFIED_DOMAIN_OVERRIDE_STRATEGY'
3126
+ | 'STRICT'
3127
+ | 'OVERRIDE';
2984
3128
  /** Returns response with indentations and line breaks. */
2985
3129
  prettyPrint?: boolean;
2986
3130
  /** Part of `parent`. Required. Name of the parent Application resource. Example: apps/myapp. */
@@ -2997,11 +3141,11 @@ declare namespace gapi.client {
2997
3141
  create(
2998
3142
  request: {
2999
3143
  /** V1 error format. */
3000
- '$.xgafv'?: string;
3144
+ '$.xgafv'?: '1' | '2';
3001
3145
  /** OAuth access token. */
3002
3146
  access_token?: string;
3003
3147
  /** Data format for response. */
3004
- alt?: string;
3148
+ alt?: 'json' | 'media' | 'proto';
3005
3149
  /** Part of `parent`. See documentation of `projectsId`. */
3006
3150
  applicationsId: string;
3007
3151
  /** JSONP */
@@ -3015,7 +3159,10 @@ declare namespace gapi.client {
3015
3159
  /** OAuth 2.0 token for the current user. */
3016
3160
  oauth_token?: string;
3017
3161
  /** Whether the domain creation should override any existing mappings for this domain. By default, overrides are rejected. */
3018
- overrideStrategy?: string;
3162
+ overrideStrategy?:
3163
+ | 'UNSPECIFIED_DOMAIN_OVERRIDE_STRATEGY'
3164
+ | 'STRICT'
3165
+ | 'OVERRIDE';
3019
3166
  /** Returns response with indentations and line breaks. */
3020
3167
  prettyPrint?: boolean;
3021
3168
  /** Part of `parent`. Required. Name of the parent Application resource. Example: apps/myapp. */
@@ -3032,11 +3179,11 @@ declare namespace gapi.client {
3032
3179
  /** Deletes the specified domain mapping. A user must be authorized to administer the associated domain in order to delete a DomainMapping resource. */
3033
3180
  delete(request?: {
3034
3181
  /** V1 error format. */
3035
- '$.xgafv'?: string;
3182
+ '$.xgafv'?: '1' | '2';
3036
3183
  /** OAuth access token. */
3037
3184
  access_token?: string;
3038
3185
  /** Data format for response. */
3039
- alt?: string;
3186
+ alt?: 'json' | 'media' | 'proto';
3040
3187
  /** Part of `name`. See documentation of `projectsId`. */
3041
3188
  applicationsId: string;
3042
3189
  /** JSONP */
@@ -3065,11 +3212,11 @@ declare namespace gapi.client {
3065
3212
  /** Gets the specified domain mapping. */
3066
3213
  get(request?: {
3067
3214
  /** V1 error format. */
3068
- '$.xgafv'?: string;
3215
+ '$.xgafv'?: '1' | '2';
3069
3216
  /** OAuth access token. */
3070
3217
  access_token?: string;
3071
3218
  /** Data format for response. */
3072
- alt?: string;
3219
+ alt?: 'json' | 'media' | 'proto';
3073
3220
  /** Part of `name`. See documentation of `projectsId`. */
3074
3221
  applicationsId: string;
3075
3222
  /** JSONP */
@@ -3098,11 +3245,11 @@ declare namespace gapi.client {
3098
3245
  /** Lists the domain mappings on an application. */
3099
3246
  list(request?: {
3100
3247
  /** V1 error format. */
3101
- '$.xgafv'?: string;
3248
+ '$.xgafv'?: '1' | '2';
3102
3249
  /** OAuth access token. */
3103
3250
  access_token?: string;
3104
3251
  /** Data format for response. */
3105
- alt?: string;
3252
+ alt?: 'json' | 'media' | 'proto';
3106
3253
  /** Part of `parent`. See documentation of `projectsId`. */
3107
3254
  applicationsId: string;
3108
3255
  /** JSONP */
@@ -3133,11 +3280,11 @@ declare namespace gapi.client {
3133
3280
  /** Updates the specified domain mapping. To map an SSL certificate to a domain mapping, update certificate_id to point to an AuthorizedCertificate resource. A user must be authorized to administer the associated domain in order to update a DomainMapping resource. */
3134
3281
  patch(request: {
3135
3282
  /** V1 error format. */
3136
- '$.xgafv'?: string;
3283
+ '$.xgafv'?: '1' | '2';
3137
3284
  /** OAuth access token. */
3138
3285
  access_token?: string;
3139
3286
  /** Data format for response. */
3140
- alt?: string;
3287
+ alt?: 'json' | 'media' | 'proto';
3141
3288
  /** Part of `name`. See documentation of `projectsId`. */
3142
3289
  applicationsId: string;
3143
3290
  /** JSONP */
@@ -3170,11 +3317,11 @@ declare namespace gapi.client {
3170
3317
  patch(
3171
3318
  request: {
3172
3319
  /** V1 error format. */
3173
- '$.xgafv'?: string;
3320
+ '$.xgafv'?: '1' | '2';
3174
3321
  /** OAuth access token. */
3175
3322
  access_token?: string;
3176
3323
  /** Data format for response. */
3177
- alt?: string;
3324
+ alt?: 'json' | 'media' | 'proto';
3178
3325
  /** Part of `name`. See documentation of `projectsId`. */
3179
3326
  applicationsId: string;
3180
3327
  /** JSONP */
@@ -3209,11 +3356,11 @@ declare namespace gapi.client {
3209
3356
  /** Enables debugging on a VM instance. This allows you to use the SSH command to connect to the virtual machine where the instance lives. While in "debug mode", the instance continues to serve live traffic. You should delete the instance when you are done debugging and then allow the system to take over and determine if another instance should be started.Only applicable for instances in App Engine flexible environment. */
3210
3357
  debug(request: {
3211
3358
  /** V1 error format. */
3212
- '$.xgafv'?: string;
3359
+ '$.xgafv'?: '1' | '2';
3213
3360
  /** OAuth access token. */
3214
3361
  access_token?: string;
3215
3362
  /** Data format for response. */
3216
- alt?: string;
3363
+ alt?: 'json' | 'media' | 'proto';
3217
3364
  /** Part of `name`. See documentation of `projectsId`. */
3218
3365
  applicationsId: string;
3219
3366
  /** JSONP */
@@ -3248,11 +3395,11 @@ declare namespace gapi.client {
3248
3395
  debug(
3249
3396
  request: {
3250
3397
  /** V1 error format. */
3251
- '$.xgafv'?: string;
3398
+ '$.xgafv'?: '1' | '2';
3252
3399
  /** OAuth access token. */
3253
3400
  access_token?: string;
3254
3401
  /** Data format for response. */
3255
- alt?: string;
3402
+ alt?: 'json' | 'media' | 'proto';
3256
3403
  /** Part of `name`. See documentation of `projectsId`. */
3257
3404
  applicationsId: string;
3258
3405
  /** JSONP */
@@ -3287,11 +3434,11 @@ declare namespace gapi.client {
3287
3434
  /** Stops a running instance.The instance might be automatically recreated based on the scaling settings of the version. For more information, see "How Instances are Managed" (standard environment (https://cloud.google.com/appengine/docs/standard/python/how-instances-are-managed) | flexible environment (https://cloud.google.com/appengine/docs/flexible/python/how-instances-are-managed)).To ensure that instances are not re-created and avoid getting billed, you can stop all instances within the target version by changing the serving status of the version to STOPPED with the apps.services.versions.patch (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions/patch) method. */
3288
3435
  delete(request?: {
3289
3436
  /** V1 error format. */
3290
- '$.xgafv'?: string;
3437
+ '$.xgafv'?: '1' | '2';
3291
3438
  /** OAuth access token. */
3292
3439
  access_token?: string;
3293
3440
  /** Data format for response. */
3294
- alt?: string;
3441
+ alt?: 'json' | 'media' | 'proto';
3295
3442
  /** Part of `name`. See documentation of `projectsId`. */
3296
3443
  applicationsId: string;
3297
3444
  /** JSONP */
@@ -3326,11 +3473,11 @@ declare namespace gapi.client {
3326
3473
  /** Deletes an existing Version resource. */
3327
3474
  delete(request?: {
3328
3475
  /** V1 error format. */
3329
- '$.xgafv'?: string;
3476
+ '$.xgafv'?: '1' | '2';
3330
3477
  /** OAuth access token. */
3331
3478
  access_token?: string;
3332
3479
  /** Data format for response. */
3333
- alt?: string;
3480
+ alt?: 'json' | 'media' | 'proto';
3334
3481
  /** Part of `name`. See documentation of `projectsId`. */
3335
3482
  applicationsId: string;
3336
3483
  /** JSONP */
@@ -3361,11 +3508,11 @@ declare namespace gapi.client {
3361
3508
  /** Exports a user image to Artifact Registry. */
3362
3509
  exportAppImage(request: {
3363
3510
  /** V1 error format. */
3364
- '$.xgafv'?: string;
3511
+ '$.xgafv'?: '1' | '2';
3365
3512
  /** OAuth access token. */
3366
3513
  access_token?: string;
3367
3514
  /** Data format for response. */
3368
- alt?: string;
3515
+ alt?: 'json' | 'media' | 'proto';
3369
3516
  /** Part of `name`. See documentation of `projectsId`. */
3370
3517
  applicationsId: string;
3371
3518
  /** JSONP */
@@ -3398,11 +3545,11 @@ declare namespace gapi.client {
3398
3545
  exportAppImage(
3399
3546
  request: {
3400
3547
  /** V1 error format. */
3401
- '$.xgafv'?: string;
3548
+ '$.xgafv'?: '1' | '2';
3402
3549
  /** OAuth access token. */
3403
3550
  access_token?: string;
3404
3551
  /** Data format for response. */
3405
- alt?: string;
3552
+ alt?: 'json' | 'media' | 'proto';
3406
3553
  /** Part of `name`. See documentation of `projectsId`. */
3407
3554
  applicationsId: string;
3408
3555
  /** JSONP */
@@ -3435,11 +3582,11 @@ declare namespace gapi.client {
3435
3582
  /** Updates the specified Version resource. You can specify the following fields depending on the App Engine environment and type of scaling that the version resource uses:Standard environment instance_class (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#Version.FIELDS.instance_class)automatic scaling in the standard environment: automatic_scaling.min_idle_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#Version.FIELDS.automatic_scaling) automatic_scaling.max_idle_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#Version.FIELDS.automatic_scaling) automaticScaling.standard_scheduler_settings.max_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#StandardSchedulerSettings) automaticScaling.standard_scheduler_settings.min_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#StandardSchedulerSettings) automaticScaling.standard_scheduler_settings.target_cpu_utilization (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#StandardSchedulerSettings) automaticScaling.standard_scheduler_settings.target_throughput_utilization (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#StandardSchedulerSettings)basic scaling or manual scaling in the standard environment: serving_status (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#Version.FIELDS.serving_status) manual_scaling.instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#manualscaling)Flexible environment serving_status (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#Version.FIELDS.serving_status)automatic scaling in the flexible environment: automatic_scaling.min_total_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#Version.FIELDS.automatic_scaling) automatic_scaling.max_total_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#Version.FIELDS.automatic_scaling) automatic_scaling.cool_down_period_sec (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#Version.FIELDS.automatic_scaling) automatic_scaling.cpu_utilization.target_utilization (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#Version.FIELDS.automatic_scaling)manual scaling in the flexible environment: manual_scaling.instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#manualscaling) */
3436
3583
  patch(request: {
3437
3584
  /** V1 error format. */
3438
- '$.xgafv'?: string;
3585
+ '$.xgafv'?: '1' | '2';
3439
3586
  /** OAuth access token. */
3440
3587
  access_token?: string;
3441
3588
  /** Data format for response. */
3442
- alt?: string;
3589
+ alt?: 'json' | 'media' | 'proto';
3443
3590
  /** Part of `name`. See documentation of `projectsId`. */
3444
3591
  applicationsId: string;
3445
3592
  /** JSONP */
@@ -3474,11 +3621,11 @@ declare namespace gapi.client {
3474
3621
  patch(
3475
3622
  request: {
3476
3623
  /** V1 error format. */
3477
- '$.xgafv'?: string;
3624
+ '$.xgafv'?: '1' | '2';
3478
3625
  /** OAuth access token. */
3479
3626
  access_token?: string;
3480
3627
  /** Data format for response. */
3481
- alt?: string;
3628
+ alt?: 'json' | 'media' | 'proto';
3482
3629
  /** Part of `name`. See documentation of `projectsId`. */
3483
3630
  applicationsId: string;
3484
3631
  /** JSONP */
@@ -3516,11 +3663,11 @@ declare namespace gapi.client {
3516
3663
  /** Deletes the specified service and all enclosed versions. */
3517
3664
  delete(request?: {
3518
3665
  /** V1 error format. */
3519
- '$.xgafv'?: string;
3666
+ '$.xgafv'?: '1' | '2';
3520
3667
  /** OAuth access token. */
3521
3668
  access_token?: string;
3522
3669
  /** Data format for response. */
3523
- alt?: string;
3670
+ alt?: 'json' | 'media' | 'proto';
3524
3671
  /** Part of `name`. See documentation of `projectsId`. */
3525
3672
  applicationsId: string;
3526
3673
  /** JSONP */
@@ -3549,11 +3696,11 @@ declare namespace gapi.client {
3549
3696
  /** Updates the configuration of the specified service. */
3550
3697
  patch(request: {
3551
3698
  /** V1 error format. */
3552
- '$.xgafv'?: string;
3699
+ '$.xgafv'?: '1' | '2';
3553
3700
  /** OAuth access token. */
3554
3701
  access_token?: string;
3555
3702
  /** Data format for response. */
3556
- alt?: string;
3703
+ alt?: 'json' | 'media' | 'proto';
3557
3704
  /** Part of `name`. See documentation of `projectsId`. */
3558
3705
  applicationsId: string;
3559
3706
  /** JSONP */
@@ -3588,11 +3735,11 @@ declare namespace gapi.client {
3588
3735
  patch(
3589
3736
  request: {
3590
3737
  /** V1 error format. */
3591
- '$.xgafv'?: string;
3738
+ '$.xgafv'?: '1' | '2';
3592
3739
  /** OAuth access token. */
3593
3740
  access_token?: string;
3594
3741
  /** Data format for response. */
3595
- alt?: string;
3742
+ alt?: 'json' | 'media' | 'proto';
3596
3743
  /** Part of `name`. See documentation of `projectsId`. */
3597
3744
  applicationsId: string;
3598
3745
  /** JSONP */
@@ -3630,11 +3777,11 @@ declare namespace gapi.client {
3630
3777
  /** Updates the specified Application resource. You can update the following fields: auth_domain - Google authentication domain for controlling user access to the application. default_cookie_expiration - Cookie expiration policy for the application. iap - Identity-Aware Proxy properties for the application. */
3631
3778
  patch(request: {
3632
3779
  /** V1 error format. */
3633
- '$.xgafv'?: string;
3780
+ '$.xgafv'?: '1' | '2';
3634
3781
  /** OAuth access token. */
3635
3782
  access_token?: string;
3636
3783
  /** Data format for response. */
3637
- alt?: string;
3784
+ alt?: 'json' | 'media' | 'proto';
3638
3785
  /** Part of `name`. See documentation of `projectsId`. */
3639
3786
  applicationsId: string;
3640
3787
  /** JSONP */
@@ -3665,11 +3812,11 @@ declare namespace gapi.client {
3665
3812
  patch(
3666
3813
  request: {
3667
3814
  /** V1 error format. */
3668
- '$.xgafv'?: string;
3815
+ '$.xgafv'?: '1' | '2';
3669
3816
  /** OAuth access token. */
3670
3817
  access_token?: string;
3671
3818
  /** Data format for response. */
3672
- alt?: string;
3819
+ alt?: 'json' | 'media' | 'proto';
3673
3820
  /** Part of `name`. See documentation of `projectsId`. */
3674
3821
  applicationsId: string;
3675
3822
  /** JSONP */
@@ -3706,11 +3853,11 @@ declare namespace gapi.client {
3706
3853
  /** 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. */
3707
3854
  get(request?: {
3708
3855
  /** V1 error format. */
3709
- '$.xgafv'?: string;
3856
+ '$.xgafv'?: '1' | '2';
3710
3857
  /** OAuth access token. */
3711
3858
  access_token?: string;
3712
3859
  /** Data format for response. */
3713
- alt?: string;
3860
+ alt?: 'json' | 'media' | 'proto';
3714
3861
  /** JSONP */
3715
3862
  callback?: string;
3716
3863
  /** Selector specifying which fields to include in a partial response. */
@@ -3737,11 +3884,11 @@ declare namespace gapi.client {
3737
3884
  /** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns UNIMPLEMENTED. */
3738
3885
  list(request?: {
3739
3886
  /** V1 error format. */
3740
- '$.xgafv'?: string;
3887
+ '$.xgafv'?: '1' | '2';
3741
3888
  /** OAuth access token. */
3742
3889
  access_token?: string;
3743
3890
  /** Data format for response. */
3744
- alt?: string;
3891
+ alt?: 'json' | 'media' | 'proto';
3745
3892
  /** JSONP */
3746
3893
  callback?: string;
3747
3894
  /** Selector specifying which fields to include in a partial response. */
@@ -3776,11 +3923,11 @@ declare namespace gapi.client {
3776
3923
  /** Gets information about a location. */
3777
3924
  get(request?: {
3778
3925
  /** V1 error format. */
3779
- '$.xgafv'?: string;
3926
+ '$.xgafv'?: '1' | '2';
3780
3927
  /** OAuth access token. */
3781
3928
  access_token?: string;
3782
3929
  /** Data format for response. */
3783
- alt?: string;
3930
+ alt?: 'json' | 'media' | 'proto';
3784
3931
  /** JSONP */
3785
3932
  callback?: string;
3786
3933
  /** Selector specifying which fields to include in a partial response. */
@@ -3802,17 +3949,17 @@ declare namespace gapi.client {
3802
3949
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3803
3950
  uploadType?: string;
3804
3951
  }): Request<Location>;
3805
- /** 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. */
3952
+ /** Lists information about the supported locations for this service.This method lists locations based on the resource scope provided in the ListLocationsRequest.name field: Global locations: If name is empty, the method lists the public locations available to all projects. Project-specific locations: If name follows the format projects/{project}, the method lists locations visible to that specific project. This includes public, private, or other project-specific locations enabled for the project.For gRPC and client library implementations, the resource name is passed as the name field. For direct service calls, the resource name is incorporated into the request path based on the specific service implementation and version. */
3806
3953
  list(request?: {
3807
3954
  /** V1 error format. */
3808
- '$.xgafv'?: string;
3955
+ '$.xgafv'?: '1' | '2';
3809
3956
  /** OAuth access token. */
3810
3957
  access_token?: string;
3811
3958
  /** Data format for response. */
3812
- alt?: string;
3959
+ alt?: 'json' | 'media' | 'proto';
3813
3960
  /** JSONP */
3814
3961
  callback?: string;
3815
- /** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented otherwise. This is primarily for internal usage. */
3962
+ /** Optional. Do not use this field unless explicitly documented otherwise. This is primarily for internal usage. */
3816
3963
  extraLocationTypes?: string | string[];
3817
3964
  /** Selector specifying which fields to include in a partial response. */
3818
3965
  fields?: string;