@maxim_mazurok/gapi.client.compute-alpha 0.1.20260113 → 0.1.20260206

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 +2739 -608
  2. package/package.json +1 -1
  3. package/readme.md +144 -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://www.googleapis.com/discovery/v1/apis/compute/alpha/rest
12
- // Revision: 20260113
12
+ // Revision: 20260206
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -1963,6 +1963,8 @@ declare namespace gapi.client {
1963
1963
  * balancing mode.
1964
1964
  */
1965
1965
  maxUtilization?: number;
1966
+ /** Information about the resource or system that manages the backend. */
1967
+ orchestrationInfo?: BackendBackendOrchestrationInfo;
1966
1968
  /**
1967
1969
  * This field indicates whether this backend should be fully utilized before
1968
1970
  * sending traffic to backends with default preference. The possible values
@@ -1988,6 +1990,10 @@ declare namespace gapi.client {
1988
1990
  service?: string;
1989
1991
  trafficDuration?: string;
1990
1992
  }
1993
+ interface BackendBackendOrchestrationInfo {
1994
+ /** The URI of the resource or system that manages the backend. */
1995
+ resourceUri?: string;
1996
+ }
1991
1997
  interface BackendBucket {
1992
1998
  /** Cloud Storage bucket name. */
1993
1999
  bucketName?: string;
@@ -2855,6 +2861,8 @@ declare namespace gapi.client {
2855
2861
  * networkPassThroughLbTrafficPolicy cannot be specified with haPolicy.
2856
2862
  */
2857
2863
  networkPassThroughLbTrafficPolicy?: BackendServiceNetworkPassThroughLbTrafficPolicy;
2864
+ /** Information about the resource or system that manages the backend service. */
2865
+ orchestrationInfo?: BackendServiceOrchestrationInfo;
2858
2866
  /**
2859
2867
  * Settings controlling the ejection of unhealthy backend endpoints from the
2860
2868
  * load balancing pool of each individual proxy instance that processes the
@@ -3013,6 +3021,19 @@ declare namespace gapi.client {
3013
3021
  tlsSettings?: BackendServiceTlsSettings;
3014
3022
  /** Output only. [Output Only] List of resources referencing given backend service. */
3015
3023
  usedBy?: BackendServiceUsedBy[];
3024
+ /**
3025
+ * The network scope of the backends that can be added to the backend
3026
+ * service. This field can be either GLOBAL_VPC_NETWORK orREGIONAL_VPC_NETWORK.
3027
+ *
3028
+ * A backend service with the VPC scope set to GLOBAL_VPC_NETWORK
3029
+ * is only allowed to have backends in global VPC networks.
3030
+ *
3031
+ * When the VPC scope is set to REGIONAL_VPC_NETWORK the backend
3032
+ * service is only allowed to have backends in regional networks in the same
3033
+ * scope as the backend service.
3034
+ * Note: if not specified then GLOBAL_VPC_NETWORK will be used.
3035
+ */
3036
+ vpcNetworkScope?: string;
3016
3037
  }
3017
3038
  interface BackendServiceAggregatedList {
3018
3039
  /** [Output Only] Unique identifier for the resource; defined by the server. */
@@ -3309,9 +3330,17 @@ declare namespace gapi.client {
3309
3330
  name?: string;
3310
3331
  }
3311
3332
  interface BackendServiceDynamicForwarding {
3333
+ /** Dynamic Forwarding Proxy configuration. */
3334
+ forwardProxy?: BackendServiceDynamicForwardingForwardProxy;
3312
3335
  /** IP:PORT based dynamic forwarding configuration. */
3313
3336
  ipPortSelection?: BackendServiceDynamicForwardingIpPortSelection;
3314
3337
  }
3338
+ interface BackendServiceDynamicForwardingForwardProxy {
3339
+ /** A boolean flag enabling dynamic forwarding proxy. */
3340
+ enabled?: boolean;
3341
+ /** Determines the dynamic forwarding proxy mode. */
3342
+ proxyMode?: string;
3343
+ }
3315
3344
  interface BackendServiceDynamicForwardingIpPortSelection {
3316
3345
  /** A boolean flag enabling IP:PORT based dynamic forwarding. */
3317
3346
  enabled?: boolean;
@@ -3764,6 +3793,13 @@ declare namespace gapi.client {
3764
3793
  */
3765
3794
  spilloverRatio?: number;
3766
3795
  }
3796
+ interface BackendServiceOrchestrationInfo {
3797
+ /**
3798
+ * The resource URI of the resource or system that manages the backend
3799
+ * service.
3800
+ */
3801
+ resourceUri?: string;
3802
+ }
3767
3803
  interface BackendServiceParams {
3768
3804
  /**
3769
3805
  * Tag keys/values directly bound to this resource.
@@ -4336,6 +4372,15 @@ declare namespace gapi.client {
4336
4372
  partitionCount?: number;
4337
4373
  }
4338
4374
  interface CacheInvalidationRule {
4375
+ /**
4376
+ * If set, this invalidation rule will only apply to requests routed to the
4377
+ * given backend service or backend bucket.
4378
+ * For example, for a backend bucket `bb1` in the same scope as the URL map,
4379
+ * the path would be `projects/my-project/global/backendBuckets/bb1`; and
4380
+ * for a backend service `bs1` in the same scope as the URL map, the path
4381
+ * would be `projects/my-project/global/backendServices/bs1`.
4382
+ */
4383
+ backendService?: string;
4339
4384
  /**
4340
4385
  * A list of cache tags used to identify cached objects.
4341
4386
  *
@@ -4351,11 +4396,22 @@ declare namespace gapi.client {
4351
4396
  * Up to 10 tags can be specified in a single invalidation request.
4352
4397
  */
4353
4398
  cacheTags?: string[];
4399
+ /**
4400
+ * If set, this invalidation rule will only apply to responses with the given
4401
+ * content-type. Parameters are not allowed and are ignored from the response
4402
+ * when matching. Wildcards are not allowed.
4403
+ */
4404
+ contentType?: string;
4354
4405
  /**
4355
4406
  * If set, this invalidation rule will only apply to requests with a Host
4356
4407
  * header matching host.
4357
4408
  */
4358
4409
  host?: string;
4410
+ /**
4411
+ * If set, this invalidation rule will only apply to responses with the
4412
+ * given HTTP status. Valid range is 200-599.
4413
+ */
4414
+ httpStatus?: number;
4359
4415
  path?: string;
4360
4416
  }
4361
4417
  interface CacheKeyPolicy {
@@ -4637,7 +4693,7 @@ declare namespace gapi.client {
4637
4693
  interface CapacityAdviceRequestDistributionPolicy {
4638
4694
  /**
4639
4695
  * The distribution shape to which the group converges.
4640
- * You can only specify the following values: ANY,ANY_SINGLE_ZONE.
4696
+ * You can only specify the following values: ANY,ANY_SINGLE_ZONE,BALANCED.
4641
4697
  */
4642
4698
  targetShape?: string;
4643
4699
  /** Zones where Capacity Advisor looks for capacity. */
@@ -4674,6 +4730,11 @@ declare namespace gapi.client {
4674
4730
  scheduling?: CapacityAdviceRequestInstancePropertiesScheduling;
4675
4731
  }
4676
4732
  interface CapacityAdviceRequestInstancePropertiesScheduling {
4733
+ /**
4734
+ * The maximum time that instances can run before Compute Engine
4735
+ * terminates them.
4736
+ */
4737
+ maxRunDuration?: string;
4677
4738
  /** Specifies the provisioning model of the instance. */
4678
4739
  provisioningModel?: string;
4679
4740
  }
@@ -4695,6 +4756,11 @@ declare namespace gapi.client {
4695
4756
  * history data and current conditions.
4696
4757
  */
4697
4758
  estimatedUptime?: string;
4759
+ /**
4760
+ * Output only. The likely maximum time that you will have to wait until
4761
+ * Compute Engine provisions your instances.
4762
+ */
4763
+ estimatedWaitDuration?: string;
4698
4764
  /**
4699
4765
  * The obtainability score indicates the likelihood of successfully
4700
4766
  * obtaining (provisioning) the requested number of VMs.
@@ -5258,256 +5324,23 @@ declare namespace gapi.client {
5258
5324
  message?: string;
5259
5325
  };
5260
5326
  }
5261
- interface CompositeHealthCheckList {
5262
- /** [Output Only] Unique identifier for the resource; defined by the server. */
5263
- id?: string;
5264
- /** A list of CompositeHealthCheck resources. */
5265
- items?: CompositeHealthCheck[];
5266
- /** Output only. [Output Only] Type of the resource. Alwayscompute#compositeHealthCheck for composite health checks. */
5267
- kind?: string;
5268
- /**
5269
- * [Output Only] This token allows you to get the next page of results for
5270
- * list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
5271
- * the query parameter pageToken in the next list request.
5272
- * Subsequent list requests will have their own nextPageToken to
5273
- * continue paging through the results.
5274
- */
5275
- nextPageToken?: string;
5276
- /** [Output Only] Server-defined URL for this resource. */
5277
- selfLink?: string;
5278
- /** [Output Only] Informational warning message. */
5279
- warning?: {
5280
- /**
5281
- * [Output Only] A warning code, if applicable. For example, Compute
5282
- * Engine returns NO_RESULTS_ON_PAGE if there
5283
- * are no results in the response.
5284
- */
5285
- code?: string;
5286
- /**
5287
- * [Output Only] Metadata about this warning in key:
5288
- * value format. For example:
5289
- *
5290
- * "data": [
5291
- * {
5292
- * "key": "scope",
5293
- * "value": "zones/us-east1-d"
5294
- * }
5295
- */
5296
- data?: Array<{
5297
- /**
5298
- * [Output Only] A key that provides more detail on the warning being
5299
- * returned. For example, for warnings where there are no results in a list
5300
- * request for a particular zone, this key might be scope and
5301
- * the key value might be the zone name. Other examples might be a key
5302
- * indicating a deprecated resource and a suggested replacement, or a
5303
- * warning about invalid network settings (for example, if an instance
5304
- * attempts to perform IP forwarding but is not enabled for IP forwarding).
5305
- */
5306
- key?: string;
5307
- /** [Output Only] A warning data value corresponding to the key. */
5308
- value?: string;
5309
- }>;
5310
- /** [Output Only] A human-readable description of the warning code. */
5311
- message?: string;
5312
- };
5313
- }
5314
- interface CompositeHealthChecksGetHealthResponse {
5327
+ interface CompositeHealthCheckHealth {
5315
5328
  /** Health sources and their corresponding health states. */
5316
5329
  healthSources?: CompositeHealthChecksGetHealthResponseHealthSourceHealth[];
5317
5330
  /** Health state of the CompositeHealthCheck. */
5318
5331
  healthState?: string;
5319
- }
5320
- interface CompositeHealthChecksGetHealthResponseHealthSourceHealth {
5321
- /** Health state of the associated HealthSource resource. */
5322
- healthState?: string;
5323
- /** URL of the associated HealthSource resource. */
5324
- source?: string;
5325
- }
5326
- interface CompositeHealthChecksScopedList {
5327
- /** A list of CompositeHealthChecks contained in this scope. */
5328
- compositeHealthChecks?: CompositeHealthCheck[];
5329
- /**
5330
- * Informational warning which replaces the list of composite health checks
5331
- * when the list is empty.
5332
- */
5333
- warning?: {
5334
- /**
5335
- * [Output Only] A warning code, if applicable. For example, Compute
5336
- * Engine returns NO_RESULTS_ON_PAGE if there
5337
- * are no results in the response.
5338
- */
5339
- code?: string;
5340
- /**
5341
- * [Output Only] Metadata about this warning in key:
5342
- * value format. For example:
5343
- *
5344
- * "data": [
5345
- * {
5346
- * "key": "scope",
5347
- * "value": "zones/us-east1-d"
5348
- * }
5349
- */
5350
- data?: Array<{
5351
- /**
5352
- * [Output Only] A key that provides more detail on the warning being
5353
- * returned. For example, for warnings where there are no results in a list
5354
- * request for a particular zone, this key might be scope and
5355
- * the key value might be the zone name. Other examples might be a key
5356
- * indicating a deprecated resource and a suggested replacement, or a
5357
- * warning about invalid network settings (for example, if an instance
5358
- * attempts to perform IP forwarding but is not enabled for IP forwarding).
5359
- */
5360
- key?: string;
5361
- /** [Output Only] A warning data value corresponding to the key. */
5362
- value?: string;
5363
- }>;
5364
- /** [Output Only] A human-readable description of the warning code. */
5365
- message?: string;
5366
- };
5367
- }
5368
- interface ConfidentialInstanceConfig {
5369
- /** Defines the type of technology used by the confidential instance. */
5370
- confidentialInstanceType?: string;
5371
- /** Defines a set of Confidential Paravisor (SVSM) options. */
5372
- confidentialParavisorConfig?: ConfidentialParavisorConfig;
5373
- /** Defines whether the instance should have confidential compute enabled. */
5374
- enableConfidentialCompute?: boolean;
5375
- }
5376
- interface ConfidentialParavisorConfig {
5377
- confidentialTpmType?: string;
5378
- sevSnpIrqMode?: string;
5379
- }
5380
- interface ConnectionDraining {
5381
- /**
5382
- * Configures a duration timeout for existing requests on a removed backend
5383
- * instance. For supported load balancers and protocols, as described inEnabling
5384
- * connection draining.
5385
- */
5386
- drainingTimeoutSec?: number;
5387
- }
5388
- interface ConsistentHashLoadBalancerSettings {
5389
- /**
5390
- * Hash is based on HTTP Cookie. This field describes a HTTP cookie that will
5391
- * be used as the hash key for the consistent hash load balancer. If the
5392
- * cookie is not present, it will be generated. This field is applicable if
5393
- * the sessionAffinity is set to HTTP_COOKIE.
5394
- *
5395
- * Not supported when the backend service is referenced by a URL map that is
5396
- * bound to target gRPC proxy that has validateForProxyless field set to true.
5397
- */
5398
- httpCookie?: ConsistentHashLoadBalancerSettingsHttpCookie;
5399
- /**
5400
- * The hash based on the value of the specified header field. This field is
5401
- * applicable if the sessionAffinity is set toHEADER_FIELD.
5402
- */
5403
- httpHeaderName?: string;
5404
- /**
5405
- * The minimum number of virtual nodes to use for the hash ring. Defaults to
5406
- * 1024. Larger ring sizes result in more granular load distributions. If the
5407
- * number of hosts in the load balancing pool is larger than the ring size,
5408
- * each host will be assigned a single virtual node.
5409
- */
5410
- minimumRingSize?: string;
5411
- }
5412
- interface ConsistentHashLoadBalancerSettingsHttpCookie {
5413
- /** Name of the cookie. */
5414
- name?: string;
5415
- /** Path to set for the cookie. */
5416
- path?: string;
5417
- /** Lifetime of the cookie. */
5418
- ttl?: Duration;
5419
- }
5420
- interface CorsPolicy {
5421
- /**
5422
- * In response to a preflight request, setting this to true
5423
- * indicates that
5424
- * the actual request can include user credentials. This field translates to
5425
- * the Access-Control-Allow-Credentials header.
5426
- *
5427
- * Default is false.
5428
- */
5429
- allowCredentials?: boolean;
5430
- /**
5431
- * Specifies the content for the Access-Control-Allow-Headers
5432
- * header.
5433
- */
5434
- allowHeaders?: string[];
5435
- /**
5436
- * Specifies the content for the Access-Control-Allow-Methods
5437
- * header.
5438
- */
5439
- allowMethods?: string[];
5440
- /**
5441
- * Specifies a regular expression that matches allowed origins. For
5442
- * more information, see regular expression syntax.
5443
- *
5444
- * An origin is allowed if it matches either an item inallowOrigins or an item inallowOriginRegexes.
5445
- *
5446
- * Regular expressions can only be used when the loadBalancingScheme is
5447
- * set to INTERNAL_SELF_MANAGED.
5448
- */
5449
- allowOriginRegexes?: string[];
5450
- /**
5451
- * Specifies the list of origins that is allowed to do CORS requests.
5452
- *
5453
- * An origin is allowed if it matches either an item inallowOrigins or an item inallowOriginRegexes.
5454
- */
5455
- allowOrigins?: string[];
5456
- /**
5457
- * If true, disables the CORS policy.
5458
- * The default value is false, which indicates that the CORS
5459
- * policy is in effect.
5460
- */
5461
- disabled?: boolean;
5462
- /**
5463
- * Specifies the content for the Access-Control-Expose-Headers
5464
- * header.
5465
- */
5466
- exposeHeaders?: string[];
5467
- /**
5468
- * Specifies how long results of a preflight request can be cached in
5469
- * seconds. This field translates to the Access-Control-Max-Age
5470
- * header.
5471
- */
5472
- maxAge?: number;
5473
- }
5474
- interface CrossSiteNetwork {
5475
- /**
5476
- * Output only. [Output Only] Creation timestamp inRFC3339
5477
- * text format.
5478
- */
5479
- creationTimestamp?: string;
5480
- /** An optional description of the cross-site network. */
5481
- description?: string;
5482
5332
  /**
5483
- * Output only. [Output Only] The unique identifier for the resource type. The server
5484
- * generates this identifier.
5333
+ * Output only. [Output Only] Type of resource. Alwayscompute#compositeHealthCheckHealth for the health of
5334
+ * composite health checks.
5485
5335
  */
5486
- id?: string;
5487
- /** Output only. [Output Only] Type of the resource. Alwayscompute#crossSiteNetwork for cross-site networks. */
5488
5336
  kind?: string;
5489
- /**
5490
- * Name of the resource. Provided by the client when the resource is created.
5491
- * The name must be 1-63 characters long, and comply withRFC1035.
5492
- * Specifically, the name must be 1-63 characters long and match the regular
5493
- * expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first
5494
- * character must be a lowercase letter, and all following characters must
5495
- * be a dash, lowercase letter, or digit, except the last character, which
5496
- * cannot be a dash.
5497
- */
5498
- name?: string;
5499
- /** Output only. [Output Only] Server-defined URL for the resource. */
5500
- selfLink?: string;
5501
- /** Output only. [Output Only] Server-defined URL for this resource with the resource id. */
5502
- selfLinkWithId?: string;
5503
5337
  }
5504
- interface CrossSiteNetworkList {
5505
- etag?: string;
5338
+ interface CompositeHealthCheckList {
5506
5339
  /** [Output Only] Unique identifier for the resource; defined by the server. */
5507
5340
  id?: string;
5508
- /** A list of CrossSiteNetwork resources. */
5509
- items?: CrossSiteNetwork[];
5510
- /** Output only. [Output Only] Type of the resource. Alwayscompute#crossSiteNetwork for cross-site networks. */
5341
+ /** A list of CompositeHealthCheck resources. */
5342
+ items?: CompositeHealthCheck[];
5343
+ /** Output only. [Output Only] Type of the resource. Alwayscompute#compositeHealthCheck for composite health checks. */
5511
5344
  kind?: string;
5512
5345
  /**
5513
5346
  * [Output Only] This token allows you to get the next page of results for
@@ -5519,11 +5352,249 @@ declare namespace gapi.client {
5519
5352
  nextPageToken?: string;
5520
5353
  /** [Output Only] Server-defined URL for this resource. */
5521
5354
  selfLink?: string;
5522
- /**
5523
- * Output only. [Output Only] Unreachable resources.
5524
- * end_interface: MixerListResponseWithEtagBuilder
5525
- */
5526
- unreachables?: string[];
5355
+ /** [Output Only] Informational warning message. */
5356
+ warning?: {
5357
+ /**
5358
+ * [Output Only] A warning code, if applicable. For example, Compute
5359
+ * Engine returns NO_RESULTS_ON_PAGE if there
5360
+ * are no results in the response.
5361
+ */
5362
+ code?: string;
5363
+ /**
5364
+ * [Output Only] Metadata about this warning in key:
5365
+ * value format. For example:
5366
+ *
5367
+ * "data": [
5368
+ * {
5369
+ * "key": "scope",
5370
+ * "value": "zones/us-east1-d"
5371
+ * }
5372
+ */
5373
+ data?: Array<{
5374
+ /**
5375
+ * [Output Only] A key that provides more detail on the warning being
5376
+ * returned. For example, for warnings where there are no results in a list
5377
+ * request for a particular zone, this key might be scope and
5378
+ * the key value might be the zone name. Other examples might be a key
5379
+ * indicating a deprecated resource and a suggested replacement, or a
5380
+ * warning about invalid network settings (for example, if an instance
5381
+ * attempts to perform IP forwarding but is not enabled for IP forwarding).
5382
+ */
5383
+ key?: string;
5384
+ /** [Output Only] A warning data value corresponding to the key. */
5385
+ value?: string;
5386
+ }>;
5387
+ /** [Output Only] A human-readable description of the warning code. */
5388
+ message?: string;
5389
+ };
5390
+ }
5391
+ interface CompositeHealthChecksGetHealthResponseHealthSourceHealth {
5392
+ /** Health state of the associated HealthSource resource. */
5393
+ healthState?: string;
5394
+ /** Fully qualified URL of the associated HealthSource resource. */
5395
+ source?: string;
5396
+ }
5397
+ interface CompositeHealthChecksScopedList {
5398
+ /** A list of CompositeHealthChecks contained in this scope. */
5399
+ compositeHealthChecks?: CompositeHealthCheck[];
5400
+ /**
5401
+ * Informational warning which replaces the list of composite health checks
5402
+ * when the list is empty.
5403
+ */
5404
+ warning?: {
5405
+ /**
5406
+ * [Output Only] A warning code, if applicable. For example, Compute
5407
+ * Engine returns NO_RESULTS_ON_PAGE if there
5408
+ * are no results in the response.
5409
+ */
5410
+ code?: string;
5411
+ /**
5412
+ * [Output Only] Metadata about this warning in key:
5413
+ * value format. For example:
5414
+ *
5415
+ * "data": [
5416
+ * {
5417
+ * "key": "scope",
5418
+ * "value": "zones/us-east1-d"
5419
+ * }
5420
+ */
5421
+ data?: Array<{
5422
+ /**
5423
+ * [Output Only] A key that provides more detail on the warning being
5424
+ * returned. For example, for warnings where there are no results in a list
5425
+ * request for a particular zone, this key might be scope and
5426
+ * the key value might be the zone name. Other examples might be a key
5427
+ * indicating a deprecated resource and a suggested replacement, or a
5428
+ * warning about invalid network settings (for example, if an instance
5429
+ * attempts to perform IP forwarding but is not enabled for IP forwarding).
5430
+ */
5431
+ key?: string;
5432
+ /** [Output Only] A warning data value corresponding to the key. */
5433
+ value?: string;
5434
+ }>;
5435
+ /** [Output Only] A human-readable description of the warning code. */
5436
+ message?: string;
5437
+ };
5438
+ }
5439
+ interface ConfidentialInstanceConfig {
5440
+ /** Defines the type of technology used by the confidential instance. */
5441
+ confidentialInstanceType?: string;
5442
+ /** Defines a set of Confidential Paravisor (SVSM) options. */
5443
+ confidentialParavisorConfig?: ConfidentialParavisorConfig;
5444
+ /** Defines whether the instance should have confidential compute enabled. */
5445
+ enableConfidentialCompute?: boolean;
5446
+ }
5447
+ interface ConfidentialParavisorConfig {
5448
+ confidentialTpmType?: string;
5449
+ sevSnpIrqMode?: string;
5450
+ }
5451
+ interface ConnectionDraining {
5452
+ /**
5453
+ * Configures a duration timeout for existing requests on a removed backend
5454
+ * instance. For supported load balancers and protocols, as described inEnabling
5455
+ * connection draining.
5456
+ */
5457
+ drainingTimeoutSec?: number;
5458
+ }
5459
+ interface ConsistentHashLoadBalancerSettings {
5460
+ /**
5461
+ * Hash is based on HTTP Cookie. This field describes a HTTP cookie that will
5462
+ * be used as the hash key for the consistent hash load balancer. If the
5463
+ * cookie is not present, it will be generated. This field is applicable if
5464
+ * the sessionAffinity is set to HTTP_COOKIE.
5465
+ *
5466
+ * Not supported when the backend service is referenced by a URL map that is
5467
+ * bound to target gRPC proxy that has validateForProxyless field set to true.
5468
+ */
5469
+ httpCookie?: ConsistentHashLoadBalancerSettingsHttpCookie;
5470
+ /**
5471
+ * The hash based on the value of the specified header field. This field is
5472
+ * applicable if the sessionAffinity is set toHEADER_FIELD.
5473
+ */
5474
+ httpHeaderName?: string;
5475
+ /**
5476
+ * The minimum number of virtual nodes to use for the hash ring. Defaults to
5477
+ * 1024. Larger ring sizes result in more granular load distributions. If the
5478
+ * number of hosts in the load balancing pool is larger than the ring size,
5479
+ * each host will be assigned a single virtual node.
5480
+ */
5481
+ minimumRingSize?: string;
5482
+ }
5483
+ interface ConsistentHashLoadBalancerSettingsHttpCookie {
5484
+ /** Name of the cookie. */
5485
+ name?: string;
5486
+ /** Path to set for the cookie. */
5487
+ path?: string;
5488
+ /** Lifetime of the cookie. */
5489
+ ttl?: Duration;
5490
+ }
5491
+ interface CorsPolicy {
5492
+ /**
5493
+ * In response to a preflight request, setting this to true
5494
+ * indicates that
5495
+ * the actual request can include user credentials. This field translates to
5496
+ * the Access-Control-Allow-Credentials header.
5497
+ *
5498
+ * Default is false.
5499
+ */
5500
+ allowCredentials?: boolean;
5501
+ /**
5502
+ * Specifies the content for the Access-Control-Allow-Headers
5503
+ * header.
5504
+ */
5505
+ allowHeaders?: string[];
5506
+ /**
5507
+ * Specifies the content for the Access-Control-Allow-Methods
5508
+ * header.
5509
+ */
5510
+ allowMethods?: string[];
5511
+ /**
5512
+ * Specifies a regular expression that matches allowed origins. For
5513
+ * more information, see regular expression syntax.
5514
+ *
5515
+ * An origin is allowed if it matches either an item inallowOrigins or an item inallowOriginRegexes.
5516
+ *
5517
+ * Regular expressions can only be used when the loadBalancingScheme is
5518
+ * set to INTERNAL_SELF_MANAGED.
5519
+ */
5520
+ allowOriginRegexes?: string[];
5521
+ /**
5522
+ * Specifies the list of origins that is allowed to do CORS requests.
5523
+ *
5524
+ * An origin is allowed if it matches either an item inallowOrigins or an item inallowOriginRegexes.
5525
+ */
5526
+ allowOrigins?: string[];
5527
+ /**
5528
+ * If true, disables the CORS policy.
5529
+ * The default value is false, which indicates that the CORS
5530
+ * policy is in effect.
5531
+ */
5532
+ disabled?: boolean;
5533
+ /**
5534
+ * Specifies the content for the Access-Control-Expose-Headers
5535
+ * header.
5536
+ */
5537
+ exposeHeaders?: string[];
5538
+ /**
5539
+ * Specifies how long results of a preflight request can be cached in
5540
+ * seconds. This field translates to the Access-Control-Max-Age
5541
+ * header.
5542
+ */
5543
+ maxAge?: number;
5544
+ }
5545
+ interface CrossSiteNetwork {
5546
+ /**
5547
+ * Output only. [Output Only] Creation timestamp inRFC3339
5548
+ * text format.
5549
+ */
5550
+ creationTimestamp?: string;
5551
+ /** An optional description of the cross-site network. */
5552
+ description?: string;
5553
+ /**
5554
+ * Output only. [Output Only] The unique identifier for the resource type. The server
5555
+ * generates this identifier.
5556
+ */
5557
+ id?: string;
5558
+ /** Output only. [Output Only] Type of the resource. Alwayscompute#crossSiteNetwork for cross-site networks. */
5559
+ kind?: string;
5560
+ /**
5561
+ * Name of the resource. Provided by the client when the resource is created.
5562
+ * The name must be 1-63 characters long, and comply withRFC1035.
5563
+ * Specifically, the name must be 1-63 characters long and match the regular
5564
+ * expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first
5565
+ * character must be a lowercase letter, and all following characters must
5566
+ * be a dash, lowercase letter, or digit, except the last character, which
5567
+ * cannot be a dash.
5568
+ */
5569
+ name?: string;
5570
+ /** Output only. [Output Only] Server-defined URL for the resource. */
5571
+ selfLink?: string;
5572
+ /** Output only. [Output Only] Server-defined URL for this resource with the resource id. */
5573
+ selfLinkWithId?: string;
5574
+ }
5575
+ interface CrossSiteNetworkList {
5576
+ etag?: string;
5577
+ /** [Output Only] Unique identifier for the resource; defined by the server. */
5578
+ id?: string;
5579
+ /** A list of CrossSiteNetwork resources. */
5580
+ items?: CrossSiteNetwork[];
5581
+ /** Output only. [Output Only] Type of the resource. Alwayscompute#crossSiteNetwork for cross-site networks. */
5582
+ kind?: string;
5583
+ /**
5584
+ * [Output Only] This token allows you to get the next page of results for
5585
+ * list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
5586
+ * the query parameter pageToken in the next list request.
5587
+ * Subsequent list requests will have their own nextPageToken to
5588
+ * continue paging through the results.
5589
+ */
5590
+ nextPageToken?: string;
5591
+ /** [Output Only] Server-defined URL for this resource. */
5592
+ selfLink?: string;
5593
+ /**
5594
+ * Output only. [Output Only] Unreachable resources.
5595
+ * end_interface: MixerListResponseWithEtagBuilder
5596
+ */
5597
+ unreachables?: string[];
5527
5598
  /** [Output Only] Informational warning message. */
5528
5599
  warning?: {
5529
5600
  /**
@@ -5733,6 +5804,49 @@ declare namespace gapi.client {
5733
5804
  */
5734
5805
  year?: number;
5735
5806
  }
5807
+ interface DateTime {
5808
+ /**
5809
+ * Optional. Day of month. Must be from 1 to 31 and valid for the year and
5810
+ * month, or 0 if specifying a datetime without a day.
5811
+ */
5812
+ day?: number;
5813
+ /**
5814
+ * Optional. Hours of day in 24 hour format. Should be from 0 to 23, defaults
5815
+ * to 0 (midnight). An API may choose to allow the value "24:00:00" for
5816
+ * scenarios like business closing time.
5817
+ */
5818
+ hours?: number;
5819
+ /** Optional. Minutes of hour of day. Must be from 0 to 59, defaults to 0. */
5820
+ minutes?: number;
5821
+ /**
5822
+ * Optional. Month of year. Must be from 1 to 12, or 0 if specifying a
5823
+ * datetime without a month.
5824
+ */
5825
+ month?: number;
5826
+ /**
5827
+ * Optional. Fractions of seconds in nanoseconds. Must be from 0 to
5828
+ * 999,999,999, defaults to 0.
5829
+ */
5830
+ nanos?: number;
5831
+ /**
5832
+ * Optional. Seconds of minutes of the time. Must normally be from 0 to 59,
5833
+ * defaults to 0. An API may allow the value 60 if it allows leap-seconds.
5834
+ */
5835
+ seconds?: number;
5836
+ /** Time zone. */
5837
+ timeZone?: TimeZone;
5838
+ /**
5839
+ * UTC offset. Must be whole seconds, between -18 hours and +18 hours.
5840
+ * For example, a UTC offset of -4:00 would be represented as
5841
+ * { seconds: -14400 }.
5842
+ */
5843
+ utcOffset?: string;
5844
+ /**
5845
+ * Optional. Year of date. Must be from 1 to 9999, or 0 if specifying a
5846
+ * datetime without a year.
5847
+ */
5848
+ year?: number;
5849
+ }
5736
5850
  interface DeprecationStatus {
5737
5851
  /**
5738
5852
  * An optional RFC3339 timestamp on or after which the state of this
@@ -6327,6 +6441,14 @@ declare namespace gapi.client {
6327
6441
  interface DiskAsyncReplicationList {
6328
6442
  asyncReplicationDisk?: DiskAsyncReplication;
6329
6443
  }
6444
+ interface DiskConvertParams {
6445
+ forceStopInProgressSnapshot?: boolean;
6446
+ provisionedIops?: string;
6447
+ provisionedThroughput?: string;
6448
+ quickConversionOnly?: boolean;
6449
+ resetSupportedVmFamilies?: boolean;
6450
+ targetDiskType?: string;
6451
+ }
6330
6452
  interface DiskInstantiationConfig {
6331
6453
  /**
6332
6454
  * Specifies whether the disk will be auto-deleted when the instance is
@@ -6510,6 +6632,9 @@ declare namespace gapi.client {
6510
6632
  */
6511
6633
  resourcePolicies?: string[];
6512
6634
  }
6635
+ interface DisksConvertRequest {
6636
+ params?: DiskConvertParams;
6637
+ }
6513
6638
  interface DiskSettings {
6514
6639
  /**
6515
6640
  * Policy of which locations are allowed to create regional
@@ -8083,17 +8208,6 @@ declare namespace gapi.client {
8083
8208
  * endpoint can be accessed from another region.
8084
8209
  */
8085
8210
  allowPscGlobalAccess?: boolean;
8086
- /**
8087
- * This is used in PSC consumer ForwardingRule to control whether the producer
8088
- * is allowed to inject packets into the consumer's network. If set to true,
8089
- * the target service attachment must have tunneling enabled and
8090
- * TunnelingConfig.RoutingMode set to PACKET_INJECTION
8091
- * Non-PSC forwarding rules should not use this field.
8092
- *
8093
- * This field was never released to any customers and is deprecated and
8094
- * will be removed in the future.
8095
- */
8096
- allowPscPacketInjection?: boolean;
8097
8211
  /**
8098
8212
  * The ports, portRange, and allPorts
8099
8213
  * fields are mutually exclusive. Only packets addressed to ports in the
@@ -8113,6 +8227,8 @@ declare namespace gapi.client {
8113
8227
  * this forwarding rule. The L3_DEFAULT protocol requiresallPorts be set to true.
8114
8228
  */
8115
8229
  allPorts?: boolean;
8230
+ /** Output only. [Output Only]. The extensions that are attached to this ForwardingRule. */
8231
+ attachedExtensions?: ForwardingRuleAttachedExtension[];
8116
8232
  /**
8117
8233
  * [Output Only] Specifies the availability group of the forwarding rule. This
8118
8234
  * field is for use by global external passthrough load balancers (load
@@ -8572,6 +8688,10 @@ declare namespace gapi.client {
8572
8688
  message?: string;
8573
8689
  };
8574
8690
  }
8691
+ interface ForwardingRuleAttachedExtension {
8692
+ /** Output only. The resource name. */
8693
+ reference?: string;
8694
+ }
8575
8695
  interface ForwardingRuleList {
8576
8696
  /** [Output Only] Unique identifier for the resource; defined by the server. */
8577
8697
  id?: string;
@@ -8684,6 +8804,11 @@ declare namespace gapi.client {
8684
8804
  };
8685
8805
  }
8686
8806
  interface FutureReservation {
8807
+ /**
8808
+ * Advanced control for cluster management, applicable only to DENSE
8809
+ * deployment type future reservations.
8810
+ */
8811
+ advancedDeploymentControl?: ReservationAdvancedDeploymentControl;
8687
8812
  /** Aggregate reservation details for the future reservation. */
8688
8813
  aggregateReservation?: AllocationAggregateReservation;
8689
8814
  /**
@@ -8716,6 +8841,7 @@ declare namespace gapi.client {
8716
8841
  * existing commitment.
8717
8842
  */
8718
8843
  commitmentInfo?: FutureReservationCommitmentInfo;
8844
+ confidentialComputeType?: string;
8719
8845
  /**
8720
8846
  * Output only. [Output Only] The creation timestamp for this future reservation inRFC3339
8721
8847
  * text format.
@@ -9208,6 +9334,21 @@ declare namespace gapi.client {
9208
9334
  /** Full instance resource URL. */
9209
9335
  instance?: string;
9210
9336
  }
9337
+ interface GetVersionOperationMetadata {
9338
+ inlineSbomInfo?: GetVersionOperationMetadataSbomInfo;
9339
+ }
9340
+ interface GetVersionOperationMetadataSbomInfo {
9341
+ /**
9342
+ * SBOM versions currently applied to the resource. The key is the component
9343
+ * name and the value is the version.
9344
+ */
9345
+ currentComponentVersions?: {[P in string]: string};
9346
+ /**
9347
+ * SBOM versions scheduled for the next maintenance. The key is the
9348
+ * component name and the value is the version.
9349
+ */
9350
+ targetComponentVersions?: {[P in string]: string};
9351
+ }
9211
9352
  interface GlobalAddressesMoveRequest {
9212
9353
  /**
9213
9354
  * An optional destination address description if intended to be different
@@ -9226,6 +9367,71 @@ declare namespace gapi.client {
9226
9367
  */
9227
9368
  destinationAddress?: string;
9228
9369
  }
9370
+ interface GlobalListVmExtensionsResponse {
9371
+ /**
9372
+ * Output only. Fingerprint of this resource. A hash of the contents stored
9373
+ * in this object. This field is used in optimistic locking. This field will
9374
+ * be ignored when inserting a VmExtensionPolicy. An up-to-date
9375
+ * fingerprint must be provided in order to update the VmExtensionPolicy.
9376
+ *
9377
+ * To see the latest value of the fingerprint, make a get() request to
9378
+ * retrieve a VmExtensionPolicy.
9379
+ */
9380
+ etag?: string;
9381
+ /** Output only. Unique identifier for the resource; defined by the server. */
9382
+ id?: string;
9383
+ /** Output only. A list of VM extensions. */
9384
+ items?: GlobalVmExtension[];
9385
+ /** Output only. Type of resource. */
9386
+ kind?: string;
9387
+ /**
9388
+ * Output only. This token allows you to get the next page of results for
9389
+ * list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
9390
+ * the query parameter pageToken in the next list request.
9391
+ * Subsequent list requests will have their own nextPageToken to
9392
+ * continue paging through the results.
9393
+ */
9394
+ nextPageToken?: string;
9395
+ /** Output only. Server-defined URL for this resource. */
9396
+ selfLink?: string;
9397
+ /** Output only. Unreachable resources. */
9398
+ unreachables?: string[];
9399
+ /** Output only. Informational warning message. */
9400
+ warning?: {
9401
+ /**
9402
+ * [Output Only] A warning code, if applicable. For example, Compute
9403
+ * Engine returns NO_RESULTS_ON_PAGE if there
9404
+ * are no results in the response.
9405
+ */
9406
+ code?: string;
9407
+ /**
9408
+ * [Output Only] Metadata about this warning in key:
9409
+ * value format. For example:
9410
+ *
9411
+ * "data": [
9412
+ * {
9413
+ * "key": "scope",
9414
+ * "value": "zones/us-east1-d"
9415
+ * }
9416
+ */
9417
+ data?: Array<{
9418
+ /**
9419
+ * [Output Only] A key that provides more detail on the warning being
9420
+ * returned. For example, for warnings where there are no results in a list
9421
+ * request for a particular zone, this key might be scope and
9422
+ * the key value might be the zone name. Other examples might be a key
9423
+ * indicating a deprecated resource and a suggested replacement, or a
9424
+ * warning about invalid network settings (for example, if an instance
9425
+ * attempts to perform IP forwarding but is not enabled for IP forwarding).
9426
+ */
9427
+ key?: string;
9428
+ /** [Output Only] A warning data value corresponding to the key. */
9429
+ value?: string;
9430
+ }>;
9431
+ /** [Output Only] A human-readable description of the warning code. */
9432
+ message?: string;
9433
+ };
9434
+ }
9229
9435
  interface GlobalNetworkEndpointGroupsAttachEndpointsRequest {
9230
9436
  /** The list of network endpoints to be attached. */
9231
9437
  networkEndpoints?: NetworkEndpoint[];
@@ -9288,6 +9494,10 @@ declare namespace gapi.client {
9288
9494
  */
9289
9495
  policy?: Policy;
9290
9496
  }
9497
+ interface GlobalVmExtension {
9498
+ name?: string;
9499
+ versions?: string[];
9500
+ }
9291
9501
  interface GlobalVmExtensionPolicy {
9292
9502
  /**
9293
9503
  * Output only. [Output Only] Creation timestamp inRFC3339
@@ -9699,7 +9909,10 @@ declare namespace gapi.client {
9699
9909
  interface HaController {
9700
9910
  /**
9701
9911
  * Advanced configuration option. If specified, these Backend Services need to
9702
- * be pre-created and configured as managed.
9912
+ * be pre-created.
9913
+ *
9914
+ * Currently, only one backend service can be specified, and it must be L4
9915
+ * Internal Load Balancer (ILB).
9703
9916
  */
9704
9917
  backendServices?: string[];
9705
9918
  /**
@@ -11013,6 +11226,14 @@ declare namespace gapi.client {
11013
11226
  message?: string;
11014
11227
  };
11015
11228
  }
11229
+ interface HealthSourceHealth {
11230
+ /** Health state of the HealthSource. */
11231
+ healthState?: string;
11232
+ /** Output only. [Output Only] Type of resource. Alwayscompute#healthSourceHealth for the health of health sources. */
11233
+ kind?: string;
11234
+ /** Health state details of the sources. */
11235
+ sources?: HealthSourcesGetHealthResponseSourceInfo[];
11236
+ }
11016
11237
  interface HealthSourceList {
11017
11238
  /** [Output Only] Unique identifier for the resource; defined by the server. */
11018
11239
  id?: string;
@@ -11066,6 +11287,41 @@ declare namespace gapi.client {
11066
11287
  message?: string;
11067
11288
  };
11068
11289
  }
11290
+ interface HealthSourcesGetHealthResponseSourceInfo {
11291
+ /**
11292
+ * Represents an instance group or network endpoint group behind the source
11293
+ * backend service. Only used if the sourceType of the regionHealthSource
11294
+ * is BACKEND_SERVICE.
11295
+ */
11296
+ backends?: HealthSourcesGetHealthResponseSourceInfoBackendInfo[];
11297
+ /**
11298
+ * Fully qualified URL of the forwarding rule associated with the source
11299
+ * resource if it is a L4ILB backend service.
11300
+ */
11301
+ forwardingRule?: string;
11302
+ /**
11303
+ * Fully qualified URL of the associated source resource. This is always a
11304
+ * backend service URL.
11305
+ */
11306
+ source?: string;
11307
+ }
11308
+ interface HealthSourcesGetHealthResponseSourceInfoBackendInfo {
11309
+ /**
11310
+ * Total number of endpoints when determining the health of the
11311
+ * regionHealthSource.
11312
+ */
11313
+ endpointCount?: number;
11314
+ /**
11315
+ * Fully qualified URL of an instance group or network endpoint group
11316
+ * behind the source backend service.
11317
+ */
11318
+ group?: string;
11319
+ /**
11320
+ * Number of endpoints considered healthy when determining health of the
11321
+ * regionHealthSource.
11322
+ */
11323
+ healthyEndpointCount?: number;
11324
+ }
11069
11325
  interface HealthSourcesScopedList {
11070
11326
  /** A list of HealthSources contained in this scope. */
11071
11327
  healthSources?: HealthSource[];
@@ -13565,6 +13821,11 @@ declare namespace gapi.client {
13565
13821
  * are scheduled to be restarted or are currently being restarted.
13566
13822
  */
13567
13823
  restarting?: number;
13824
+ /**
13825
+ * Output only. [Output Only] The number of instances in the managed instance group that
13826
+ * are scheduled to be restarted or are currently being restarted.
13827
+ */
13828
+ restartingInPlace?: number;
13568
13829
  /**
13569
13830
  * Output only. [Output Only] The number of instances in the managed instance group that
13570
13831
  * are scheduled to be resumed or are currently being resumed.
@@ -14164,6 +14425,8 @@ declare namespace gapi.client {
14164
14425
  * in the request.
14165
14426
  */
14166
14427
  allInstances?: boolean;
14428
+ /** Whether the boot disk is allowed to be updated with restart. */
14429
+ disruptionMode?: string;
14167
14430
  /**
14168
14431
  * The list of URLs of one or more instances for which you want to apply
14169
14432
  * updates. Each URL can be a full URL or a partial URL, such aszones/[ZONE]/instances/[INSTANCE_NAME].
@@ -14214,6 +14477,14 @@ declare namespace gapi.client {
14214
14477
  */
14215
14478
  mostDisruptiveAllowedAction?: string;
14216
14479
  }
14480
+ interface InstanceGroupManagersConfigureAcceleratorTopologiesRequest {
14481
+ /**
14482
+ * Map of accelerator topologies that should have their state changed to
14483
+ * the specified value. The key is the hashed topology locus id. It can be
14484
+ * obtained from the GetAvailableAcceleratorTopologies rpc.
14485
+ */
14486
+ acceleratorTopologyActions?: {[P in string]: string};
14487
+ }
14217
14488
  interface InstanceGroupManagersCreateInstancesRequest {
14218
14489
  /** [Required] List of specifications of per-instance configs. */
14219
14490
  instances?: PerInstanceConfig[];
@@ -14258,11 +14529,56 @@ declare namespace gapi.client {
14258
14529
  acceleratorTopologiesInfo?: {
14259
14530
  [P in string]: InstanceGroupManagersGetAvailableAcceleratorTopologiesResponseAcceleratorTopologyInfo;
14260
14531
  };
14532
+ /** URL to MMIG this MIG belongs to. */
14533
+ multiMig?: string;
14261
14534
  }
14262
14535
  interface InstanceGroupManagersGetAvailableAcceleratorTopologiesResponseAcceleratorTopologyInfo {
14263
14536
  /** Topology in the format of: "16x16", "4x4x4", etc. */
14264
14537
  acceleratorTopology?: string;
14265
14538
  acceleratorTopologyHealth?: string;
14539
+ acceleratorTopologyState?: InstanceGroupManagersGetAvailableAcceleratorTopologiesResponseAcceleratorTopologyState;
14540
+ instancesHealth?: string;
14541
+ /**
14542
+ * Identified by the topology Id in the accelerator_topology_info map. Empty
14543
+ * for the top-level topology
14544
+ */
14545
+ parent?: string;
14546
+ }
14547
+ interface InstanceGroupManagersGetAvailableAcceleratorTopologiesResponseAcceleratorTopologyState {
14548
+ currentState?: string;
14549
+ /** Reason why the topology state change failed */
14550
+ error?: {
14551
+ /**
14552
+ * [Output Only] The array of errors encountered while processing this
14553
+ * operation.
14554
+ */
14555
+ errors?: Array<{
14556
+ /** [Output Only] The error type identifier for this error. */
14557
+ code?: string;
14558
+ /**
14559
+ * [Output Only] An optional list of messages that contain the error
14560
+ * details. There is a set of defined message types to use for providing
14561
+ * details.The syntax depends on the error code. For example,
14562
+ * QuotaExceededInfo will have details when the error code is
14563
+ * QUOTA_EXCEEDED.
14564
+ */
14565
+ errorDetails?: Array<{
14566
+ errorInfo?: ErrorInfo;
14567
+ help?: Help;
14568
+ localizedMessage?: LocalizedMessage;
14569
+ quotaInfo?: QuotaExceededInfo;
14570
+ }>;
14571
+ /**
14572
+ * [Output Only] Indicates the field in the request that caused the error.
14573
+ * This property is optional.
14574
+ */
14575
+ location?: string;
14576
+ /** [Output Only] An optional, human-readable error message. */
14577
+ message?: string;
14578
+ }>;
14579
+ };
14580
+ /** Timestamp when the last error happened */
14581
+ errorTimestamp?: string;
14266
14582
  }
14267
14583
  interface InstanceGroupManagersListErrorsResponse {
14268
14584
  /** Output only. [Output Only] The list of errors of the managed instance group. */
@@ -14785,6 +15101,8 @@ declare namespace gapi.client {
14785
15101
  mode?: string;
14786
15102
  }
14787
15103
  interface InstanceGroupManagerUpdatePolicy {
15104
+ /** Whether the boot disk is allowed to be updated with restart. */
15105
+ disruptionMode?: string;
14788
15106
  /**
14789
15107
  * The
14790
15108
  * instance redistribution policy for regional managed instance groups.
@@ -15923,6 +16241,11 @@ declare namespace gapi.client {
15923
16241
  * be a dash.
15924
16242
  */
15925
16243
  name?: string;
16244
+ /**
16245
+ * Input only. Additional params passed with the request, but not persisted
16246
+ * as part of resource payload.
16247
+ */
16248
+ params?: InstantSnapshotParams;
15926
16249
  /**
15927
16250
  * Output only. [Output Only] URL of the region where the instant snapshot resides.
15928
16251
  * You must specify this field as part of the HTTP request URL. It is
@@ -16179,6 +16502,18 @@ declare namespace gapi.client {
16179
16502
  message?: string;
16180
16503
  };
16181
16504
  }
16505
+ interface InstantSnapshotParams {
16506
+ /**
16507
+ * Input only. Resource manager tags to be bound to the instant snapshot. Tag keys and
16508
+ * values have the same definition as resource
16509
+ * manager tags. Keys and values can be either in numeric format,
16510
+ * such as `tagKeys/{tag_key_id}` and `tagValues/{tag_value_id}` or in
16511
+ * namespaced format such as `{org_id|project_id}/{tag_key_short_name}` and
16512
+ * `{tag_value_short_name}`. The field is ignored (both PUT &
16513
+ * PATCH) when empty.
16514
+ */
16515
+ resourceManagerTags?: {[P in string]: string};
16516
+ }
16182
16517
  interface InstantSnapshotResourceStatus {
16183
16518
  /** [Output Only] The storage size of this instant snapshot. */
16184
16519
  storageSizeBytes?: string;
@@ -16284,6 +16619,12 @@ declare namespace gapi.client {
16284
16619
  * create the resource.
16285
16620
  */
16286
16621
  description?: string;
16622
+ /**
16623
+ * Output only. [Output Only] URL of the InterconnectLocation object that represents where
16624
+ * this connection is to be provisioned. By default it will be the same as the
16625
+ * location field.
16626
+ */
16627
+ effectiveLocation?: string;
16287
16628
  /** Output only. [Output Only] A list of outages expected for this Interconnect. */
16288
16629
  expectedOutages?: InterconnectOutageNotification[];
16289
16630
  /**
@@ -16457,10 +16798,7 @@ declare namespace gapi.client {
16457
16798
  * Interconnect.
16458
16799
  */
16459
16800
  state?: string;
16460
- /**
16461
- * Specific subzone in the InterconnectLocation that represents where
16462
- * this connection is to be provisioned.
16463
- */
16801
+ /** To be deprecated. */
16464
16802
  subzone?: string;
16465
16803
  /**
16466
16804
  * Output only. [Output Only] A list of the URLs of all CrossSiteNetwork WireGroups
@@ -19325,6 +19663,136 @@ declare namespace gapi.client {
19325
19663
  message?: string;
19326
19664
  };
19327
19665
  }
19666
+ interface ListVmExtensionsResponse {
19667
+ /**
19668
+ * Output only. Fingerprint of this resource. A hash of the contents stored
19669
+ * in this object. This field is used in optimistic locking. This field will
19670
+ * be ignored when inserting a VmExtensionPolicy. An up-to-date
19671
+ * fingerprint must be provided in order to update the VmExtensionPolicy.
19672
+ *
19673
+ * To see the latest value of the fingerprint, make a get() request to
19674
+ * retrieve a VmExtensionPolicy.
19675
+ */
19676
+ etag?: string;
19677
+ /** Output only. Unique identifier for the resource; defined by the server. */
19678
+ id?: string;
19679
+ /** Output only. A list of VM extensions. */
19680
+ items?: VmExtension[];
19681
+ /** Output only. Type of resource. */
19682
+ kind?: string;
19683
+ /**
19684
+ * Output only. This token allows you to get the next page of results for
19685
+ * list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
19686
+ * the query parameter pageToken in the next list request.
19687
+ * Subsequent list requests will have their own nextPageToken to
19688
+ * continue paging through the results.
19689
+ */
19690
+ nextPageToken?: string;
19691
+ /** Output only. Server-defined URL for this resource. */
19692
+ selfLink?: string;
19693
+ /** Output only. Unreachable resources. */
19694
+ unreachables?: string[];
19695
+ /** Output only. Informational warning message. */
19696
+ warning?: {
19697
+ /**
19698
+ * [Output Only] A warning code, if applicable. For example, Compute
19699
+ * Engine returns NO_RESULTS_ON_PAGE if there
19700
+ * are no results in the response.
19701
+ */
19702
+ code?: string;
19703
+ /**
19704
+ * [Output Only] Metadata about this warning in key:
19705
+ * value format. For example:
19706
+ *
19707
+ * "data": [
19708
+ * {
19709
+ * "key": "scope",
19710
+ * "value": "zones/us-east1-d"
19711
+ * }
19712
+ */
19713
+ data?: Array<{
19714
+ /**
19715
+ * [Output Only] A key that provides more detail on the warning being
19716
+ * returned. For example, for warnings where there are no results in a list
19717
+ * request for a particular zone, this key might be scope and
19718
+ * the key value might be the zone name. Other examples might be a key
19719
+ * indicating a deprecated resource and a suggested replacement, or a
19720
+ * warning about invalid network settings (for example, if an instance
19721
+ * attempts to perform IP forwarding but is not enabled for IP forwarding).
19722
+ */
19723
+ key?: string;
19724
+ /** [Output Only] A warning data value corresponding to the key. */
19725
+ value?: string;
19726
+ }>;
19727
+ /** [Output Only] A human-readable description of the warning code. */
19728
+ message?: string;
19729
+ };
19730
+ }
19731
+ interface ListVmExtensionStatesResponse {
19732
+ /**
19733
+ * Output only. Fingerprint of this resource. A hash of the contents stored
19734
+ * in this object. This field is used in optimistic locking. This field will
19735
+ * be ignored when inserting a VmExtensionPolicy. An up-to-date
19736
+ * fingerprint must be provided in order to update the VmExtensionPolicy.
19737
+ *
19738
+ * To see the latest value of the fingerprint, make a get() request to
19739
+ * retrieve a VmExtensionPolicy.
19740
+ */
19741
+ etag?: string;
19742
+ /** Output only. Unique identifier for the resource; defined by the server. */
19743
+ id?: string;
19744
+ /** Output only. A list of VM extension policy resources. */
19745
+ items?: VmExtensionState[];
19746
+ /** Output only. Type of resource. */
19747
+ kind?: string;
19748
+ /**
19749
+ * Output only. This token allows you to get the next page of results for
19750
+ * list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for
19751
+ * the query parameter pageToken in the next list request.
19752
+ * Subsequent list requests will have their own nextPageToken to
19753
+ * continue paging through the results.
19754
+ */
19755
+ nextPageToken?: string;
19756
+ /** Output only. Server-defined URL for this resource. */
19757
+ selfLink?: string;
19758
+ /** Output only. Unreachable resources. */
19759
+ unreachables?: string[];
19760
+ /** Output only. Informational warning message. */
19761
+ warning?: {
19762
+ /**
19763
+ * [Output Only] A warning code, if applicable. For example, Compute
19764
+ * Engine returns NO_RESULTS_ON_PAGE if there
19765
+ * are no results in the response.
19766
+ */
19767
+ code?: string;
19768
+ /**
19769
+ * [Output Only] Metadata about this warning in key:
19770
+ * value format. For example:
19771
+ *
19772
+ * "data": [
19773
+ * {
19774
+ * "key": "scope",
19775
+ * "value": "zones/us-east1-d"
19776
+ * }
19777
+ */
19778
+ data?: Array<{
19779
+ /**
19780
+ * [Output Only] A key that provides more detail on the warning being
19781
+ * returned. For example, for warnings where there are no results in a list
19782
+ * request for a particular zone, this key might be scope and
19783
+ * the key value might be the zone name. Other examples might be a key
19784
+ * indicating a deprecated resource and a suggested replacement, or a
19785
+ * warning about invalid network settings (for example, if an instance
19786
+ * attempts to perform IP forwarding but is not enabled for IP forwarding).
19787
+ */
19788
+ key?: string;
19789
+ /** [Output Only] A warning data value corresponding to the key. */
19790
+ value?: string;
19791
+ }>;
19792
+ /** [Output Only] A human-readable description of the warning code. */
19793
+ message?: string;
19794
+ };
19795
+ }
19328
19796
  interface LocalDisk {
19329
19797
  /** Specifies the number of such disks. */
19330
19798
  diskCount?: number;
@@ -19577,8 +20045,8 @@ declare namespace gapi.client {
19577
20045
  * Input only. Resource manager tags to be bound to the machine image. Tag keys and values
19578
20046
  * have the same definition as resource
19579
20047
  * manager tags. Keys and values can be either in numeric format,
19580
- * such as `tagKeys/{tag_key_id}` and `tagValues/456` or in namespaced
19581
- * format such as `{org_id|project_id}/{tag_key_short_name}` and
20048
+ * such as `tagKeys/{tag_key_id}` and `tagValues/{tag_value_id}` or in
20049
+ * namespaced format such as `{org_id|project_id}/{tag_key_short_name}` and
19582
20050
  * `{tag_value_short_name}`. The field is ignored (both PUT &
19583
20051
  * PATCH) when empty.
19584
20052
  */
@@ -21973,11 +22441,7 @@ declare namespace gapi.client {
21973
22441
  * exported between peer networks. The default value is IPV4_ONLY.
21974
22442
  */
21975
22443
  stackType?: string;
21976
- /**
21977
- * Output only. [Output Only] State for the peering, either `ACTIVE` or `INACTIVE`. The
21978
- * peering is `ACTIVE` when there's a matching configuration in the peer
21979
- * network.
21980
- */
22444
+ /** Output only. [Output Only] State for the peering. */
21981
22445
  state?: string;
21982
22446
  /** Output only. [Output Only] Details about the current state of the peering. */
21983
22447
  stateDetails?: string;
@@ -23755,6 +24219,7 @@ declare namespace gapi.client {
23755
24219
  message?: string;
23756
24220
  }>;
23757
24221
  };
24222
+ getVersionOperationMetadata?: GetVersionOperationMetadata;
23758
24223
  /**
23759
24224
  * [Output Only] If the operation fails, this field contains the HTTP error
23760
24225
  * message that was returned, such as `NOT FOUND`.
@@ -24753,6 +25218,26 @@ declare namespace gapi.client {
24753
25218
  */
24754
25219
  status?: string;
24755
25220
  }
25221
+ interface PeriodicPartialMaintenanceSchedule {
25222
+ /** The maintenance type in which the zone is during the given window. */
25223
+ subType?: string;
25224
+ /**
25225
+ * The target resource that the maintenance window is for.
25226
+ * For example, "projects/my-project/zones/us-central1-a".
25227
+ */
25228
+ targetResource?: string;
25229
+ type?: string;
25230
+ /**
25231
+ * The end civil timestamp of the window (not inclusive).
25232
+ * This contains a time zone.
25233
+ */
25234
+ windowEndTime?: DateTime;
25235
+ /**
25236
+ * The start civil timestamp of the window.
25237
+ * This contains a time zone.
25238
+ */
25239
+ windowStartTime?: DateTime;
25240
+ }
24756
25241
  interface Permission {
24757
25242
  /** Extra custom constraints. The constraints are ANDed together. */
24758
25243
  constraints?: PermissionConstraint[];
@@ -26870,6 +27355,8 @@ declare namespace gapi.client {
26870
27355
  * in the request.
26871
27356
  */
26872
27357
  allInstances?: boolean;
27358
+ /** Whether the boot disk is allowed to be updated with restart. */
27359
+ disruptionMode?: string;
26873
27360
  /**
26874
27361
  * The list of URLs of one or more instances for which you want to apply
26875
27362
  * updates. Each URL can be a full URL or a partial URL, such aszones/[ZONE]/instances/[INSTANCE_NAME].
@@ -27475,6 +27962,7 @@ declare namespace gapi.client {
27475
27962
  * displays for reservations that are tied to a commitment.
27476
27963
  */
27477
27964
  commitment?: string;
27965
+ confidentialComputeType?: string;
27478
27966
  /**
27479
27967
  * Output only. [Output Only] Creation timestamp inRFC3339
27480
27968
  * text format.
@@ -27497,6 +27985,12 @@ declare namespace gapi.client {
27497
27985
  * create the resource.
27498
27986
  */
27499
27987
  description?: string;
27988
+ /**
27989
+ * Indicates the early access maintenance for the reservation.
27990
+ * If this field is absent or set to NO_EARLY_ACCESS, the reservation is not
27991
+ * enrolled in early access maintenance and the standard notice applies.
27992
+ */
27993
+ earlyAccessMaintenance?: string;
27500
27994
  /**
27501
27995
  * Indicates whether Compute Engine allows unplanned maintenance for your VMs;
27502
27996
  * for example, to fix hardware errors.
@@ -27525,6 +28019,11 @@ declare namespace gapi.client {
27525
28019
  * be a dash.
27526
28020
  */
27527
28021
  name?: string;
28022
+ /**
28023
+ * Input only. Additional params passed with the request, but not persisted
28024
+ * as part of resource payload.
28025
+ */
28026
+ params?: ReservationParams;
27528
28027
  /**
27529
28028
  * Protection tier for the workload which specifies the workload expectations
27530
28029
  * in the event of infrastructure failures at data center (e.g. power
@@ -27875,6 +28374,18 @@ declare namespace gapi.client {
27875
28374
  message?: string;
27876
28375
  };
27877
28376
  }
28377
+ interface ReservationParams {
28378
+ /**
28379
+ * Input only. Resource manager tags to be bound to the reservation. Tag keys and
28380
+ * values have the same definition as resource
28381
+ * manager tags. Keys and values can be either in numeric format,
28382
+ * such as `tagKeys/{tag_key_id}` and `tagValues/{tag_value_id}` or in
28383
+ * namespaced format such as `{org_id|project_id}/{tag_key_short_name}` and
28384
+ * `{tag_value_short_name}`. The field is ignored (both PUT &
28385
+ * PATCH) when empty.
28386
+ */
28387
+ resourceManagerTags?: {[P in string]: string};
28388
+ }
27878
28389
  interface ReservationsBlocksPerformMaintenanceRequest {
27879
28390
  /** Specifies if all, running or unused hosts are in scope for this request. */
27880
28391
  maintenanceScope?: string;
@@ -27925,6 +28436,10 @@ declare namespace gapi.client {
27925
28436
  interface ReservationSlotsGetResponse {
27926
28437
  resource?: ReservationSlot;
27927
28438
  }
28439
+ interface ReservationSlotsGetVersionRequest {
28440
+ /** The SBOM selection to return. Duplicate values in the list will be ignored. */
28441
+ sbomSelections?: string[];
28442
+ }
27928
28443
  interface ReservationSlotsListResponse {
27929
28444
  /** The unique identifier for the resource; defined by the server. */
27930
28445
  id?: string;
@@ -28119,6 +28634,10 @@ declare namespace gapi.client {
28119
28634
  interface ReservationSubBlocksGetResponse {
28120
28635
  resource?: ReservationSubBlock;
28121
28636
  }
28637
+ interface ReservationSubBlocksGetVersionRequest {
28638
+ /** The SBOM selection to return. */
28639
+ sbomSelections?: string[];
28640
+ }
28122
28641
  interface ReservationSubBlocksListResponse {
28123
28642
  /** Unique identifier for the resource; defined by the server. */
28124
28643
  id?: string;
@@ -28733,6 +29252,8 @@ declare namespace gapi.client {
28733
29252
  enableOsInventoryMetadataValue?: boolean;
28734
29253
  /** Effective enable-oslogin value at Instance level. */
28735
29254
  enableOsloginMetadataValue?: boolean;
29255
+ /** Effective gce-container-declaration value at Instance level. */
29256
+ gceContainerDeclarationMetadataValue?: boolean;
28736
29257
  /** Effective serial-port-enable value at Instance level. */
28737
29258
  serialPortEnableMetadataValue?: boolean;
28738
29259
  /** Effective serial-port-logging-enable value at Instance level. */
@@ -33302,6 +33823,29 @@ declare namespace gapi.client {
33302
33823
  */
33303
33824
  resourceManagerTags?: {[P in string]: string};
33304
33825
  }
33826
+ interface SnapshotRecycleBinPolicy {
33827
+ /**
33828
+ * The rules for the snapshot recycle bin policy. The key is either 'default'
33829
+ * or namespacedName of the TagValue which can be in the format:
33830
+ * `{organization_id}/{tag_key_short_name}/{tag_value_short_name}` or
33831
+ * `{project_id}/{tag_key_short_name}/{tag_value_short_name}` or
33832
+ * `{project_number}/{tag_key_short_name}/{tag_value_short_name}`. The default
33833
+ * rule is applied if snapshots do not have any of these tags.
33834
+ * The value is the rule for the key.
33835
+ */
33836
+ rules?: {[P in string]: SnapshotRecycleBinPolicyRule};
33837
+ }
33838
+ interface SnapshotRecycleBinPolicyRule {
33839
+ /** The rule config for standard snapshots. */
33840
+ standardSnapshots?: SnapshotRecycleBinPolicyRuleRuleConfig;
33841
+ }
33842
+ interface SnapshotRecycleBinPolicyRuleRuleConfig {
33843
+ /**
33844
+ * The retention duration for snapshots in the recycle bin after which the
33845
+ * snapshots are automatically deleted from recycle bin.
33846
+ */
33847
+ retentionDurationDays?: string;
33848
+ }
33305
33849
  interface SnapshotResourceStatus {
33306
33850
  /**
33307
33851
  * Output only. [Output only] Scheduled deletion time of the snapshot. The snapshot will
@@ -33355,6 +33899,10 @@ declare namespace gapi.client {
33355
33899
  */
33356
33900
  name?: string;
33357
33901
  }
33902
+ interface SnapshotsGetEffectiveRecycleBinRuleResponse {
33903
+ /** The retention duration of the snapshot in recycle bin. */
33904
+ retentionDurationDays?: string;
33905
+ }
33358
33906
  interface SnapshotsScopedList {
33359
33907
  /** [Output Only] A list of snapshots contained in this scope. */
33360
33908
  snapshots?: Snapshot[];
@@ -34015,6 +34563,16 @@ declare namespace gapi.client {
34015
34563
  * dash.
34016
34564
  */
34017
34565
  name?: string;
34566
+ /**
34567
+ * One of DEFAULT, ENABLED, orDEFERRED. Controls whether the load balancer allows
34568
+ * negotiating X25519MLKEM768 key exchange when clients advertise support for
34569
+ * it. When set to DEFAULT, or if no SSL Policy is
34570
+ * attached to the target proxy, the load balancer disallows X25519MLKEM768
34571
+ * key exchange until it is enabled by default on LBs. When set toENABLED, the load balancer will negotiate X25519MLKEM768 key
34572
+ * exchange. Customers can set this to DEFERRED to temporarily
34573
+ * opt-out the LB from negotiating post-quantum key exchange by default.
34574
+ */
34575
+ postQuantumKeyExchange?: string;
34018
34576
  /**
34019
34577
  * Profile specifies the set of SSL features that can be used by the load
34020
34578
  * balancer when negotiating SSL with clients. This can be one ofCOMPATIBLE, MODERN, RESTRICTED, orCUSTOM. If using CUSTOM, the set of SSL features
@@ -34340,11 +34898,11 @@ declare namespace gapi.client {
34340
34898
  usedBytes?: string;
34341
34899
  }
34342
34900
  interface StoragePoolExapoolProvisionedCapacityGb {
34343
- /** Output only. Size, in GiB, of provisioned capacity-optimized capacity for this Exapool */
34901
+ /** Size, in GiB, of provisioned capacity-optimized capacity for this Exapool */
34344
34902
  capacityOptimized?: string;
34345
- /** Output only. Size, in GiB, of provisioned read-optimized capacity for this Exapool */
34903
+ /** Size, in GiB, of provisioned read-optimized capacity for this Exapool */
34346
34904
  readOptimized?: string;
34347
- /** Output only. Size, in GiB, of provisioned write-optimized capacity for this Exapool */
34905
+ /** Size, in GiB, of provisioned write-optimized capacity for this Exapool */
34348
34906
  writeOptimized?: string;
34349
34907
  }
34350
34908
  interface StoragePoolList {
@@ -34812,9 +35370,9 @@ declare namespace gapi.client {
34812
35370
  */
34813
35371
  aggregationInterval?: string;
34814
35372
  /**
34815
- * Whether this subnetwork's ranges can conflict with existing static routes.
35373
+ * Whether this subnetwork's ranges can conflict with existing custom routes.
34816
35374
  * Setting this to true allows this subnetwork's primary and secondary ranges
34817
- * to overlap with (and contain) static routes that have already been
35375
+ * to overlap with (and contain) custom routes that have already been
34818
35376
  * configured on the corresponding network.
34819
35377
  *
34820
35378
  * For example if a static route has range 10.1.0.0/16, a subnet
@@ -34830,8 +35388,6 @@ declare namespace gapi.client {
34830
35388
  *
34831
35389
  * The default value is false and applies to all existing subnetworks and
34832
35390
  * automatically created subnetworks.
34833
- *
34834
- * This field cannot be set to true at resource creation time.
34835
35391
  */
34836
35392
  allowSubnetCidrRoutesOverlap?: boolean;
34837
35393
  /**
@@ -35022,7 +35578,7 @@ declare namespace gapi.client {
35022
35578
  * An array of configurations for secondary IP ranges for VM instances
35023
35579
  * contained in this subnetwork. The primary IP of such VM must belong to the
35024
35580
  * primary ipCidrRange of the subnetwork. The alias IPs may belong to either
35025
- * primary or secondary ranges. This field can be updated with apatch request.
35581
+ * primary or secondary ranges. This field can be updated with apatch request. Supports both IPv4 and IPv6 ranges.
35026
35582
  */
35027
35583
  secondaryIpRanges?: SubnetworkSecondaryRange[];
35028
35584
  /** [Output Only] Server-defined URL for the resource. */
@@ -35248,19 +35804,32 @@ declare namespace gapi.client {
35248
35804
  * The range of IP addresses belonging to this subnetwork secondary range.
35249
35805
  * Provide this property when you create the subnetwork. Ranges must be
35250
35806
  * unique and non-overlapping with all primary and secondary IP ranges
35251
- * within a network. Only IPv4 is supported. The range can be any range
35252
- * listed in theValid
35807
+ * within a network. Both IPv4 and IPv6 ranges are supported. For IPv4,
35808
+ * the range can be any range listed in theValid
35253
35809
  * ranges list.
35810
+ *
35811
+ * For IPv6:
35812
+ * The range must have a /64 prefix length.
35813
+ * The range must be omitted, for auto-allocation from Google-defined ULA
35814
+ * IPv6 range.
35815
+ * For BYOGUA internal IPv6 secondary range, the range may be specified
35816
+ * along with the `ipCollection` field.
35817
+ * If an `ipCollection` is specified, the requested ip_cidr_range must lie
35818
+ * within the range of the PDP referenced by the `ipCollection` field for
35819
+ * allocation.
35820
+ * If `ipCollection` field is specified, but ip_cidr_range is not,
35821
+ * the range is auto-allocated from the PDP referenced by the `ipCollection`
35822
+ * field.
35254
35823
  */
35255
35824
  ipCidrRange?: string;
35256
35825
  /**
35257
35826
  * The name associated with this subnetwork secondary range, used when adding
35258
- * an alias IP range to a VM instance.
35827
+ * an alias IP/IPv6 range to a VM instance.
35259
35828
  * The name must be 1-63 characters long, and comply withRFC1035.
35260
35829
  * The name must be unique within the subnetwork.
35261
35830
  */
35262
35831
  rangeName?: string;
35263
- /** The URL of the reserved internal range. */
35832
+ /** The URL of the reserved internal range. Only IPv4 is supported. */
35264
35833
  reservedInternalRange?: string;
35265
35834
  }
35266
35835
  interface SubnetworksExpandIpCidrRangeRequest {
@@ -37413,6 +37982,12 @@ declare namespace gapi.client {
37413
37982
  */
37414
37983
  permissions?: string[];
37415
37984
  }
37985
+ interface TimeZone {
37986
+ /** IANA Time Zone Database time zone. For example "America/New_York". */
37987
+ id?: string;
37988
+ /** Optional. IANA Time Zone Database version number. For example "2019a". */
37989
+ version?: string;
37990
+ }
37416
37991
  interface TlsCertificateContext {
37417
37992
  /**
37418
37993
  * Specifies the certificate and private key paths. This field is
@@ -38107,7 +38682,10 @@ declare namespace gapi.client {
38107
38682
  };
38108
38683
  }
38109
38684
  interface UsableSubnetworkSecondaryRange {
38110
- /** The range of IP addresses belonging to this subnetwork secondary range. */
38685
+ /**
38686
+ * The range of IP addresses belonging to this subnetwork secondary range.
38687
+ * Can be Ipv4 or Ipv6 range.
38688
+ */
38111
38689
  ipCidrRange?: string;
38112
38690
  /**
38113
38691
  * The name associated with this subnetwork secondary range, used when adding
@@ -38267,6 +38845,12 @@ declare namespace gapi.client {
38267
38845
  message?: string;
38268
38846
  };
38269
38847
  }
38848
+ interface VmExtension {
38849
+ /** The name of the vm extension. */
38850
+ name?: string;
38851
+ /** The latest 10 versions of the vm extension. */
38852
+ versions?: string[];
38853
+ }
38270
38854
  interface VmExtensionPoliciesScopedList {
38271
38855
  /** List of VmExtensionPolicy resources contained in this scope. */
38272
38856
  vmExtensionPolicies?: VmExtensionPolicy[];
@@ -38525,6 +39109,29 @@ declare namespace gapi.client {
38525
39109
  message?: string;
38526
39110
  };
38527
39111
  }
39112
+ interface VmExtensionState {
39113
+ /** The status message of the extension if the extension fails to enforce. */
39114
+ enforcementMsg?: string;
39115
+ /**
39116
+ * The enforcement state of the extension.
39117
+ * If the extension is not enforced yet, then the health status will not be
39118
+ * specified.
39119
+ */
39120
+ enforcementState?: string;
39121
+ /** The health status of the extension. */
39122
+ healthStatus?: string;
39123
+ /** The name of the extension. */
39124
+ name?: string;
39125
+ /** The id of the policy that is enforced on the extension. */
39126
+ policyId?: string;
39127
+ /**
39128
+ * The status message of the extension if the extension is in unhealthy
39129
+ * state.
39130
+ */
39131
+ unhealthyMsg?: string;
39132
+ /** The version of the extension. */
39133
+ version?: string;
39134
+ }
38528
39135
  interface VpnGateway {
38529
39136
  /**
38530
39137
  * Output only. [Output Only] Creation timestamp inRFC3339
@@ -39713,6 +40320,7 @@ declare namespace gapi.client {
39713
40320
  name?: string;
39714
40321
  /** [Output Only] Full URL reference to the region which hosts the zone. */
39715
40322
  region?: string;
40323
+ resourceStatus?: ZoneResourceStatus;
39716
40324
  /** [Output Only] Server-defined URL for the resource. */
39717
40325
  selfLink?: string;
39718
40326
  /** [Output Only] Status of the zone, either UP orDOWN. */
@@ -39773,6 +40381,10 @@ declare namespace gapi.client {
39773
40381
  message?: string;
39774
40382
  };
39775
40383
  }
40384
+ interface ZoneResourceStatus {
40385
+ /** Output only. [Output Only] The upcoming maintenance schedule. */
40386
+ upcomingMaintenances?: PeriodicPartialMaintenanceSchedule[];
40387
+ }
39776
40388
  interface ZoneSetLabelsRequest {
39777
40389
  /**
39778
40390
  * The fingerprint of the previous set of labels for this resource,
@@ -44994,13 +45606,8 @@ declare namespace gapi.client {
44994
45606
  },
44995
45607
  body: BulkZoneSetLabelsRequest,
44996
45608
  ): Request<Operation>;
44997
- /**
44998
- * Creates a snapshot of a specified persistent disk. For regular snapshot
44999
- * creation, consider using snapshots.insert
45000
- * instead, as that method supports more features, such as creating snapshots
45001
- * in a project different from the source disk project.
45002
- */
45003
- createSnapshot(request: {
45609
+ /** Converts a persistent disk to support Gen4+ VMs. */
45610
+ convert(request: {
45004
45611
  /** V1 error format. */
45005
45612
  '$.xgafv'?: string;
45006
45613
  /** OAuth access token. */
@@ -45009,15 +45616,10 @@ declare namespace gapi.client {
45009
45616
  alt?: string;
45010
45617
  /** JSONP */
45011
45618
  callback?: string;
45012
- /** Name of the persistent disk to snapshot. */
45619
+ /** Name of the Disk resource, should conform to RFC1035. */
45013
45620
  disk: string;
45014
45621
  /** Selector specifying which fields to include in a partial response. */
45015
45622
  fields?: string;
45016
- /**
45017
- * [Input Only] Whether to attempt an application consistent snapshot by
45018
- * informing the OS to prepare for the snapshot process.
45019
- */
45020
- guestFlush?: boolean;
45021
45623
  /** 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. */
45022
45624
  key?: string;
45023
45625
  /** OAuth 2.0 token for the current user. */
@@ -45053,9 +45655,9 @@ declare namespace gapi.client {
45053
45655
  /** The name of the zone for this request. */
45054
45656
  zone: string;
45055
45657
  /** Request body */
45056
- resource: Snapshot;
45658
+ resource: DisksConvertRequest;
45057
45659
  }): Request<Operation>;
45058
- createSnapshot(
45660
+ convert(
45059
45661
  request: {
45060
45662
  /** V1 error format. */
45061
45663
  '$.xgafv'?: string;
@@ -45065,15 +45667,10 @@ declare namespace gapi.client {
45065
45667
  alt?: string;
45066
45668
  /** JSONP */
45067
45669
  callback?: string;
45068
- /** Name of the persistent disk to snapshot. */
45670
+ /** Name of the Disk resource, should conform to RFC1035. */
45069
45671
  disk: string;
45070
45672
  /** Selector specifying which fields to include in a partial response. */
45071
45673
  fields?: string;
45072
- /**
45073
- * [Input Only] Whether to attempt an application consistent snapshot by
45074
- * informing the OS to prepare for the snapshot process.
45075
- */
45076
- guestFlush?: boolean;
45077
45674
  /** 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. */
45078
45675
  key?: string;
45079
45676
  /** OAuth 2.0 token for the current user. */
@@ -45109,65 +45706,15 @@ declare namespace gapi.client {
45109
45706
  /** The name of the zone for this request. */
45110
45707
  zone: string;
45111
45708
  },
45112
- body: Snapshot,
45709
+ body: DisksConvertRequest,
45113
45710
  ): Request<Operation>;
45114
45711
  /**
45115
- * Deletes the specified persistent disk. Deleting a disk removes its data
45116
- * permanently and is irreversible. However, deleting a disk does not
45117
- * delete any snapshots
45118
- * previously made from the disk. You must separatelydelete
45119
- * snapshots.
45712
+ * Creates a snapshot of a specified persistent disk. For regular snapshot
45713
+ * creation, consider using snapshots.insert
45714
+ * instead, as that method supports more features, such as creating snapshots
45715
+ * in a project different from the source disk project.
45120
45716
  */
45121
- delete(request?: {
45122
- /** V1 error format. */
45123
- '$.xgafv'?: string;
45124
- /** OAuth access token. */
45125
- access_token?: string;
45126
- /** Data format for response. */
45127
- alt?: string;
45128
- /** JSONP */
45129
- callback?: string;
45130
- /** Name of the persistent disk to delete. */
45131
- disk: string;
45132
- /** Selector specifying which fields to include in a partial response. */
45133
- fields?: string;
45134
- /** 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. */
45135
- key?: string;
45136
- /** OAuth 2.0 token for the current user. */
45137
- oauth_token?: string;
45138
- /** Returns response with indentations and line breaks. */
45139
- prettyPrint?: boolean;
45140
- /** Project ID for this request. */
45141
- project: string;
45142
- /** 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. */
45143
- quotaUser?: string;
45144
- /**
45145
- * An optional request ID to identify requests. Specify a unique request ID so
45146
- * that if you must retry your request, the server will know to ignore the
45147
- * request if it has already been completed.
45148
- *
45149
- * For example, consider a situation where you make an initial request and
45150
- * the request times out. If you make the request again with the same
45151
- * request ID, the server can check if original operation with the same
45152
- * request ID was received, and if so, will ignore the second request. This
45153
- * prevents clients from accidentally creating duplicate commitments.
45154
- *
45155
- * The request ID must be
45156
- * a valid UUID with the exception that zero UUID is not supported
45157
- * (00000000-0000-0000-0000-000000000000).
45158
- */
45159
- requestId?: string;
45160
- /** Upload protocol for media (e.g. "raw", "multipart"). */
45161
- upload_protocol?: string;
45162
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
45163
- uploadType?: string;
45164
- /** Legacy name for parameter that has been superseded by `quotaUser`. */
45165
- userIp?: string;
45166
- /** The name of the zone for this request. */
45167
- zone: string;
45168
- }): Request<Operation>;
45169
- /** Returns the specified persistent disk. */
45170
- get(request?: {
45717
+ createSnapshot(request: {
45171
45718
  /** V1 error format. */
45172
45719
  '$.xgafv'?: string;
45173
45720
  /** OAuth access token. */
@@ -45176,121 +45723,15 @@ declare namespace gapi.client {
45176
45723
  alt?: string;
45177
45724
  /** JSONP */
45178
45725
  callback?: string;
45179
- /** Name of the persistent disk to return. */
45726
+ /** Name of the persistent disk to snapshot. */
45180
45727
  disk: string;
45181
45728
  /** Selector specifying which fields to include in a partial response. */
45182
45729
  fields?: string;
45183
- /** 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. */
45184
- key?: string;
45185
- /** OAuth 2.0 token for the current user. */
45186
- oauth_token?: string;
45187
- /** Returns response with indentations and line breaks. */
45188
- prettyPrint?: boolean;
45189
- /** Project ID for this request. */
45190
- project: string;
45191
- /** 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. */
45192
- quotaUser?: string;
45193
- /** Upload protocol for media (e.g. "raw", "multipart"). */
45194
- upload_protocol?: string;
45195
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
45196
- uploadType?: string;
45197
- /** Legacy name for parameter that has been superseded by `quotaUser`. */
45198
- userIp?: string;
45199
- /** The name of the zone for this request. */
45200
- zone: string;
45201
- }): Request<Disk>;
45202
- /** Gets the status of current async replication for a given device. */
45203
- getAsyncReplicationStatus(request?: {
45204
- /** V1 error format. */
45205
- '$.xgafv'?: string;
45206
- /** OAuth access token. */
45207
- access_token?: string;
45208
- /** Data format for response. */
45209
- alt?: string;
45210
- /** JSONP */
45211
- callback?: string;
45212
45730
  /**
45213
- * Name of the Disk resource whose Async replication details are requested.
45214
- * Name should conform to RFC1035 or be an unsigned long integer.
45731
+ * [Input Only] Whether to attempt an application consistent snapshot by
45732
+ * informing the OS to prepare for the snapshot process.
45215
45733
  */
45216
- disk: string;
45217
- /** Selector specifying which fields to include in a partial response. */
45218
- fields?: string;
45219
- /** 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. */
45220
- key?: string;
45221
- /** OAuth 2.0 token for the current user. */
45222
- oauth_token?: string;
45223
- /** Returns response with indentations and line breaks. */
45224
- prettyPrint?: boolean;
45225
- /** Project ID for this request. */
45226
- project: string;
45227
- /** 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. */
45228
- quotaUser?: string;
45229
- /** Upload protocol for media (e.g. "raw", "multipart"). */
45230
- upload_protocol?: string;
45231
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
45232
- uploadType?: string;
45233
- /** Legacy name for parameter that has been superseded by `quotaUser`. */
45234
- userIp?: string;
45235
- /** The name of the zone for this request. */
45236
- zone: string;
45237
- }): Request<GetAsyncReplicationStatusResponse>;
45238
- /**
45239
- * Gets the access control policy for a resource. May be empty if no such
45240
- * policy or resource exists.
45241
- */
45242
- getIamPolicy(request?: {
45243
- /** V1 error format. */
45244
- '$.xgafv'?: string;
45245
- /** OAuth access token. */
45246
- access_token?: string;
45247
- /** Data format for response. */
45248
- alt?: string;
45249
- /** JSONP */
45250
- callback?: string;
45251
- /** Selector specifying which fields to include in a partial response. */
45252
- fields?: string;
45253
- /** 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. */
45254
- key?: string;
45255
- /** OAuth 2.0 token for the current user. */
45256
- oauth_token?: string;
45257
- /** Requested IAM Policy version. */
45258
- optionsRequestedPolicyVersion?: number;
45259
- /** Returns response with indentations and line breaks. */
45260
- prettyPrint?: boolean;
45261
- /** Project ID for this request. */
45262
- project: string;
45263
- /** 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. */
45264
- quotaUser?: string;
45265
- /** Name or id of the resource for this request. */
45266
- resource: string;
45267
- /** Upload protocol for media (e.g. "raw", "multipart"). */
45268
- upload_protocol?: string;
45269
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
45270
- uploadType?: string;
45271
- /** Legacy name for parameter that has been superseded by `quotaUser`. */
45272
- userIp?: string;
45273
- /** The name of the zone for this request. */
45274
- zone: string;
45275
- }): Request<Policy>;
45276
- /**
45277
- * Creates a persistent disk in the specified project using the data
45278
- * in the request. You can create a disk from a source
45279
- * (sourceImage, sourceSnapshot, orsourceDisk) or create an empty 500 GB data disk by
45280
- * omitting all properties. You can also create a disk that is larger than
45281
- * the default size by specifying the sizeGb property.
45282
- */
45283
- insert(request: {
45284
- /** V1 error format. */
45285
- '$.xgafv'?: string;
45286
- /** OAuth access token. */
45287
- access_token?: string;
45288
- /** Data format for response. */
45289
- alt?: string;
45290
- /** JSONP */
45291
- callback?: string;
45292
- /** Selector specifying which fields to include in a partial response. */
45293
- fields?: string;
45734
+ guestFlush?: boolean;
45294
45735
  /** 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. */
45295
45736
  key?: string;
45296
45737
  /** OAuth 2.0 token for the current user. */
@@ -45317,8 +45758,6 @@ declare namespace gapi.client {
45317
45758
  * (00000000-0000-0000-0000-000000000000).
45318
45759
  */
45319
45760
  requestId?: string;
45320
- /** Source image to restore onto a disk. This field is optional. */
45321
- sourceImage?: string;
45322
45761
  /** Upload protocol for media (e.g. "raw", "multipart"). */
45323
45762
  upload_protocol?: string;
45324
45763
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -45328,9 +45767,284 @@ declare namespace gapi.client {
45328
45767
  /** The name of the zone for this request. */
45329
45768
  zone: string;
45330
45769
  /** Request body */
45331
- resource: Disk;
45770
+ resource: Snapshot;
45332
45771
  }): Request<Operation>;
45333
- insert(
45772
+ createSnapshot(
45773
+ request: {
45774
+ /** V1 error format. */
45775
+ '$.xgafv'?: string;
45776
+ /** OAuth access token. */
45777
+ access_token?: string;
45778
+ /** Data format for response. */
45779
+ alt?: string;
45780
+ /** JSONP */
45781
+ callback?: string;
45782
+ /** Name of the persistent disk to snapshot. */
45783
+ disk: string;
45784
+ /** Selector specifying which fields to include in a partial response. */
45785
+ fields?: string;
45786
+ /**
45787
+ * [Input Only] Whether to attempt an application consistent snapshot by
45788
+ * informing the OS to prepare for the snapshot process.
45789
+ */
45790
+ guestFlush?: boolean;
45791
+ /** 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. */
45792
+ key?: string;
45793
+ /** OAuth 2.0 token for the current user. */
45794
+ oauth_token?: string;
45795
+ /** Returns response with indentations and line breaks. */
45796
+ prettyPrint?: boolean;
45797
+ /** Project ID for this request. */
45798
+ project: string;
45799
+ /** 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. */
45800
+ quotaUser?: string;
45801
+ /**
45802
+ * An optional request ID to identify requests. Specify a unique request ID so
45803
+ * that if you must retry your request, the server will know to ignore the
45804
+ * request if it has already been completed.
45805
+ *
45806
+ * For example, consider a situation where you make an initial request and
45807
+ * the request times out. If you make the request again with the same
45808
+ * request ID, the server can check if original operation with the same
45809
+ * request ID was received, and if so, will ignore the second request. This
45810
+ * prevents clients from accidentally creating duplicate commitments.
45811
+ *
45812
+ * The request ID must be
45813
+ * a valid UUID with the exception that zero UUID is not supported
45814
+ * (00000000-0000-0000-0000-000000000000).
45815
+ */
45816
+ requestId?: string;
45817
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
45818
+ upload_protocol?: string;
45819
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
45820
+ uploadType?: string;
45821
+ /** Legacy name for parameter that has been superseded by `quotaUser`. */
45822
+ userIp?: string;
45823
+ /** The name of the zone for this request. */
45824
+ zone: string;
45825
+ },
45826
+ body: Snapshot,
45827
+ ): Request<Operation>;
45828
+ /**
45829
+ * Deletes the specified persistent disk. Deleting a disk removes its data
45830
+ * permanently and is irreversible. However, deleting a disk does not
45831
+ * delete any snapshots
45832
+ * previously made from the disk. You must separatelydelete
45833
+ * snapshots.
45834
+ */
45835
+ delete(request?: {
45836
+ /** V1 error format. */
45837
+ '$.xgafv'?: string;
45838
+ /** OAuth access token. */
45839
+ access_token?: string;
45840
+ /** Data format for response. */
45841
+ alt?: string;
45842
+ /** JSONP */
45843
+ callback?: string;
45844
+ /** Name of the persistent disk to delete. */
45845
+ disk: string;
45846
+ /** Selector specifying which fields to include in a partial response. */
45847
+ fields?: string;
45848
+ /** 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. */
45849
+ key?: string;
45850
+ /** OAuth 2.0 token for the current user. */
45851
+ oauth_token?: string;
45852
+ /** Returns response with indentations and line breaks. */
45853
+ prettyPrint?: boolean;
45854
+ /** Project ID for this request. */
45855
+ project: string;
45856
+ /** 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. */
45857
+ quotaUser?: string;
45858
+ /**
45859
+ * An optional request ID to identify requests. Specify a unique request ID so
45860
+ * that if you must retry your request, the server will know to ignore the
45861
+ * request if it has already been completed.
45862
+ *
45863
+ * For example, consider a situation where you make an initial request and
45864
+ * the request times out. If you make the request again with the same
45865
+ * request ID, the server can check if original operation with the same
45866
+ * request ID was received, and if so, will ignore the second request. This
45867
+ * prevents clients from accidentally creating duplicate commitments.
45868
+ *
45869
+ * The request ID must be
45870
+ * a valid UUID with the exception that zero UUID is not supported
45871
+ * (00000000-0000-0000-0000-000000000000).
45872
+ */
45873
+ requestId?: string;
45874
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
45875
+ upload_protocol?: string;
45876
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
45877
+ uploadType?: string;
45878
+ /** Legacy name for parameter that has been superseded by `quotaUser`. */
45879
+ userIp?: string;
45880
+ /** The name of the zone for this request. */
45881
+ zone: string;
45882
+ }): Request<Operation>;
45883
+ /** Returns the specified persistent disk. */
45884
+ get(request?: {
45885
+ /** V1 error format. */
45886
+ '$.xgafv'?: string;
45887
+ /** OAuth access token. */
45888
+ access_token?: string;
45889
+ /** Data format for response. */
45890
+ alt?: string;
45891
+ /** JSONP */
45892
+ callback?: string;
45893
+ /** Name of the persistent disk to return. */
45894
+ disk: string;
45895
+ /** Selector specifying which fields to include in a partial response. */
45896
+ fields?: string;
45897
+ /** 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. */
45898
+ key?: string;
45899
+ /** OAuth 2.0 token for the current user. */
45900
+ oauth_token?: string;
45901
+ /** Returns response with indentations and line breaks. */
45902
+ prettyPrint?: boolean;
45903
+ /** Project ID for this request. */
45904
+ project: string;
45905
+ /** 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. */
45906
+ quotaUser?: string;
45907
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
45908
+ upload_protocol?: string;
45909
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
45910
+ uploadType?: string;
45911
+ /** Legacy name for parameter that has been superseded by `quotaUser`. */
45912
+ userIp?: string;
45913
+ /** The name of the zone for this request. */
45914
+ zone: string;
45915
+ }): Request<Disk>;
45916
+ /** Gets the status of current async replication for a given device. */
45917
+ getAsyncReplicationStatus(request?: {
45918
+ /** V1 error format. */
45919
+ '$.xgafv'?: string;
45920
+ /** OAuth access token. */
45921
+ access_token?: string;
45922
+ /** Data format for response. */
45923
+ alt?: string;
45924
+ /** JSONP */
45925
+ callback?: string;
45926
+ /**
45927
+ * Name of the Disk resource whose Async replication details are requested.
45928
+ * Name should conform to RFC1035 or be an unsigned long integer.
45929
+ */
45930
+ disk: string;
45931
+ /** Selector specifying which fields to include in a partial response. */
45932
+ fields?: string;
45933
+ /** 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. */
45934
+ key?: string;
45935
+ /** OAuth 2.0 token for the current user. */
45936
+ oauth_token?: string;
45937
+ /** Returns response with indentations and line breaks. */
45938
+ prettyPrint?: boolean;
45939
+ /** Project ID for this request. */
45940
+ project: string;
45941
+ /** 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. */
45942
+ quotaUser?: string;
45943
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
45944
+ upload_protocol?: string;
45945
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
45946
+ uploadType?: string;
45947
+ /** Legacy name for parameter that has been superseded by `quotaUser`. */
45948
+ userIp?: string;
45949
+ /** The name of the zone for this request. */
45950
+ zone: string;
45951
+ }): Request<GetAsyncReplicationStatusResponse>;
45952
+ /**
45953
+ * Gets the access control policy for a resource. May be empty if no such
45954
+ * policy or resource exists.
45955
+ */
45956
+ getIamPolicy(request?: {
45957
+ /** V1 error format. */
45958
+ '$.xgafv'?: string;
45959
+ /** OAuth access token. */
45960
+ access_token?: string;
45961
+ /** Data format for response. */
45962
+ alt?: string;
45963
+ /** JSONP */
45964
+ callback?: string;
45965
+ /** Selector specifying which fields to include in a partial response. */
45966
+ fields?: string;
45967
+ /** 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. */
45968
+ key?: string;
45969
+ /** OAuth 2.0 token for the current user. */
45970
+ oauth_token?: string;
45971
+ /** Requested IAM Policy version. */
45972
+ optionsRequestedPolicyVersion?: number;
45973
+ /** Returns response with indentations and line breaks. */
45974
+ prettyPrint?: boolean;
45975
+ /** Project ID for this request. */
45976
+ project: string;
45977
+ /** 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. */
45978
+ quotaUser?: string;
45979
+ /** Name or id of the resource for this request. */
45980
+ resource: string;
45981
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
45982
+ upload_protocol?: string;
45983
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
45984
+ uploadType?: string;
45985
+ /** Legacy name for parameter that has been superseded by `quotaUser`. */
45986
+ userIp?: string;
45987
+ /** The name of the zone for this request. */
45988
+ zone: string;
45989
+ }): Request<Policy>;
45990
+ /**
45991
+ * Creates a persistent disk in the specified project using the data
45992
+ * in the request. You can create a disk from a source
45993
+ * (sourceImage, sourceSnapshot, orsourceDisk) or create an empty 500 GB data disk by
45994
+ * omitting all properties. You can also create a disk that is larger than
45995
+ * the default size by specifying the sizeGb property.
45996
+ */
45997
+ insert(request: {
45998
+ /** V1 error format. */
45999
+ '$.xgafv'?: string;
46000
+ /** OAuth access token. */
46001
+ access_token?: string;
46002
+ /** Data format for response. */
46003
+ alt?: string;
46004
+ /** JSONP */
46005
+ callback?: string;
46006
+ /** Selector specifying which fields to include in a partial response. */
46007
+ fields?: string;
46008
+ /** 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. */
46009
+ key?: string;
46010
+ /** OAuth 2.0 token for the current user. */
46011
+ oauth_token?: string;
46012
+ /** Returns response with indentations and line breaks. */
46013
+ prettyPrint?: boolean;
46014
+ /** Project ID for this request. */
46015
+ project: string;
46016
+ /** 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. */
46017
+ quotaUser?: string;
46018
+ /**
46019
+ * An optional request ID to identify requests. Specify a unique request ID so
46020
+ * that if you must retry your request, the server will know to ignore the
46021
+ * request if it has already been completed.
46022
+ *
46023
+ * For example, consider a situation where you make an initial request and
46024
+ * the request times out. If you make the request again with the same
46025
+ * request ID, the server can check if original operation with the same
46026
+ * request ID was received, and if so, will ignore the second request. This
46027
+ * prevents clients from accidentally creating duplicate commitments.
46028
+ *
46029
+ * The request ID must be
46030
+ * a valid UUID with the exception that zero UUID is not supported
46031
+ * (00000000-0000-0000-0000-000000000000).
46032
+ */
46033
+ requestId?: string;
46034
+ /** Source image to restore onto a disk. This field is optional. */
46035
+ sourceImage?: string;
46036
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
46037
+ upload_protocol?: string;
46038
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
46039
+ uploadType?: string;
46040
+ /** Legacy name for parameter that has been superseded by `quotaUser`. */
46041
+ userIp?: string;
46042
+ /** The name of the zone for this request. */
46043
+ zone: string;
46044
+ /** Request body */
46045
+ resource: Disk;
46046
+ }): Request<Operation>;
46047
+ insert(
45334
46048
  request: {
45335
46049
  /** V1 error format. */
45336
46050
  '$.xgafv'?: string;
@@ -49396,6 +50110,7 @@ declare namespace gapi.client {
49396
50110
  uploadType?: string;
49397
50111
  /** Legacy name for parameter that has been superseded by `quotaUser`. */
49398
50112
  userIp?: string;
50113
+ view?: string;
49399
50114
  }): Request<ForwardingRule>;
49400
50115
  /**
49401
50116
  * Creates a ForwardingRule resource in the specified project and region using
@@ -51302,6 +52017,7 @@ declare namespace gapi.client {
51302
52017
  uploadType?: string;
51303
52018
  /** Legacy name for parameter that has been superseded by `quotaUser`. */
51304
52019
  userIp?: string;
52020
+ view?: string;
51305
52021
  }): Request<ForwardingRule>;
51306
52022
  /**
51307
52023
  * Creates a GlobalForwardingRule resource in the specified project using
@@ -52104,6 +52820,20 @@ declare namespace gapi.client {
52104
52820
  /**
52105
52821
  * Creates a network endpoint group in the specified project using the
52106
52822
  * parameters that are included in the request.
52823
+ *
52824
+ * Note: Use the following APIs to manage network endpoint groups:
52825
+ *
52826
+ * -
52827
+ * To manage NEGs with zonal scope (such as zonal NEGs, hybrid connectivity
52828
+ * NEGs): zonal
52829
+ * API
52830
+ * -
52831
+ * To manage NEGs with regional scope (such as regional internet NEGs,
52832
+ * serverless NEGs, Private Service Connect NEGs): regional
52833
+ * API
52834
+ * -
52835
+ * To manage NEGs with global scope (such as global internet NEGs):global
52836
+ * API
52107
52837
  */
52108
52838
  insert(request: {
52109
52839
  /** V1 error format. */
@@ -53754,6 +54484,36 @@ declare namespace gapi.client {
53754
54484
  /** Legacy name for parameter that has been superseded by `quotaUser`. */
53755
54485
  userIp?: string;
53756
54486
  }): Request<GlobalVmExtensionPolicy>;
54487
+ /** Retrieves details of a specific VM extension. */
54488
+ getVmExtension(request?: {
54489
+ /** V1 error format. */
54490
+ '$.xgafv'?: string;
54491
+ /** OAuth access token. */
54492
+ access_token?: string;
54493
+ /** Data format for response. */
54494
+ alt?: string;
54495
+ /** JSONP */
54496
+ callback?: string;
54497
+ extensionName: string;
54498
+ /** Selector specifying which fields to include in a partial response. */
54499
+ fields?: string;
54500
+ /** 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. */
54501
+ key?: string;
54502
+ /** OAuth 2.0 token for the current user. */
54503
+ oauth_token?: string;
54504
+ /** Returns response with indentations and line breaks. */
54505
+ prettyPrint?: boolean;
54506
+ /** Project ID for this request. */
54507
+ project: string;
54508
+ /** 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. */
54509
+ quotaUser?: string;
54510
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
54511
+ upload_protocol?: string;
54512
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
54513
+ uploadType?: string;
54514
+ /** Legacy name for parameter that has been superseded by `quotaUser`. */
54515
+ userIp?: string;
54516
+ }): Request<GlobalVmExtension>;
53757
54517
  /** Creates a new project level GlobalVmExtensionPolicy. */
53758
54518
  insert(request: {
53759
54519
  /** V1 error format. */
@@ -53975,6 +54735,136 @@ declare namespace gapi.client {
53975
54735
  /** Legacy name for parameter that has been superseded by `quotaUser`. */
53976
54736
  userIp?: string;
53977
54737
  }): Request<GlobalVmExtensionPolicyList>;
54738
+ /**
54739
+ * Lists all VM extensions within a specific zone for a project.
54740
+ * This is a read-only API.
54741
+ */
54742
+ listVmExtensions(request?: {
54743
+ /** V1 error format. */
54744
+ '$.xgafv'?: string;
54745
+ /** OAuth access token. */
54746
+ access_token?: string;
54747
+ /** Data format for response. */
54748
+ alt?: string;
54749
+ /** JSONP */
54750
+ callback?: string;
54751
+ /** Selector specifying which fields to include in a partial response. */
54752
+ fields?: string;
54753
+ /**
54754
+ * A filter expression that filters resources listed in the response. Most
54755
+ * Compute resources support two types of filter expressions:
54756
+ * expressions that support regular expressions and expressions that follow
54757
+ * API improvement proposal AIP-160.
54758
+ * These two types of filter expressions cannot be mixed in one request.
54759
+ *
54760
+ * If you want to use AIP-160, your expression must specify the field name, an
54761
+ * operator, and the value that you want to use for filtering. The value
54762
+ * must be a string, a number, or a boolean. The operator
54763
+ * must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`.
54764
+ *
54765
+ * For example, if you are filtering Compute Engine instances, you can
54766
+ * exclude instances named `example-instance` by specifying
54767
+ * `name != example-instance`.
54768
+ *
54769
+ * The `:*` comparison can be used to test whether a key has been defined.
54770
+ * For example, to find all objects with `owner` label use:
54771
+ * ```
54772
+ * labels.owner:*
54773
+ * ```
54774
+ *
54775
+ * You can also filter nested fields. For example, you could specify
54776
+ * `scheduling.automaticRestart = false` to include instances only
54777
+ * if they are not scheduled for automatic restarts. You can use filtering
54778
+ * on nested fields to filter based onresource labels.
54779
+ *
54780
+ * To filter on multiple expressions, provide each separate expression within
54781
+ * parentheses. For example:
54782
+ * ```
54783
+ * (scheduling.automaticRestart = true)
54784
+ * (cpuPlatform = "Intel Skylake")
54785
+ * ```
54786
+ * By default, each expression is an `AND` expression. However, you
54787
+ * can include `AND` and `OR` expressions explicitly.
54788
+ * For example:
54789
+ * ```
54790
+ * (cpuPlatform = "Intel Skylake") OR
54791
+ * (cpuPlatform = "Intel Broadwell") AND
54792
+ * (scheduling.automaticRestart = true)
54793
+ * ```
54794
+ *
54795
+ * If you want to use a regular expression, use the `eq` (equal) or `ne`
54796
+ * (not equal) operator against a single un-parenthesized expression with or
54797
+ * without quotes or against multiple parenthesized expressions. Examples:
54798
+ *
54799
+ * `fieldname eq unquoted literal`
54800
+ * `fieldname eq 'single quoted literal'`
54801
+ * `fieldname eq "double quoted literal"`
54802
+ * `(fieldname1 eq literal) (fieldname2 ne "literal")`
54803
+ *
54804
+ * The literal value is interpreted as a regular expression using GoogleRE2 library syntax.
54805
+ * The literal value must match the entire field.
54806
+ *
54807
+ * For example, to filter for instances that do not end with name "instance",
54808
+ * you would use `name ne .*instance`.
54809
+ *
54810
+ * You cannot combine constraints on multiple fields using regular
54811
+ * expressions.
54812
+ */
54813
+ filter?: string;
54814
+ /** 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. */
54815
+ key?: string;
54816
+ /**
54817
+ * The maximum number of results per page that should be returned.
54818
+ * If the number of available results is larger than `maxResults`,
54819
+ * Compute Engine returns a `nextPageToken` that can be used to get
54820
+ * the next page of results in subsequent list requests. Acceptable values are
54821
+ * `0` to `500`, inclusive. (Default: `500`)
54822
+ */
54823
+ maxResults?: number;
54824
+ /** OAuth 2.0 token for the current user. */
54825
+ oauth_token?: string;
54826
+ /**
54827
+ * Sorts list results by a certain order. By default, results
54828
+ * are returned in alphanumerical order based on the resource name.
54829
+ *
54830
+ * You can also sort results in descending order based on the creation
54831
+ * timestamp using `orderBy="creationTimestamp desc"`. This sorts
54832
+ * results based on the `creationTimestamp` field in
54833
+ * reverse chronological order (newest result first). Use this to sort
54834
+ * resources like operations so that the newest operation is returned first.
54835
+ *
54836
+ * Currently, only sorting by `name` or
54837
+ * `creationTimestamp desc` is supported.
54838
+ */
54839
+ orderBy?: string;
54840
+ /**
54841
+ * Specifies a page token to use. Set `pageToken` to the
54842
+ * `nextPageToken` returned by a previous list request to get
54843
+ * the next page of results.
54844
+ */
54845
+ pageToken?: string;
54846
+ /** Returns response with indentations and line breaks. */
54847
+ prettyPrint?: boolean;
54848
+ /** Required. Project ID for this request. */
54849
+ project: string;
54850
+ /** 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. */
54851
+ quotaUser?: string;
54852
+ /**
54853
+ * Opt-in for partial success behavior which provides partial results in case
54854
+ * of failure. The default value is false.
54855
+ *
54856
+ * For example, when partial success behavior is enabled, aggregatedList for a
54857
+ * single zone scope either returns all resources in the zone or no resources,
54858
+ * with an error code.
54859
+ */
54860
+ returnPartialSuccess?: boolean;
54861
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
54862
+ upload_protocol?: string;
54863
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
54864
+ uploadType?: string;
54865
+ /** Legacy name for parameter that has been superseded by `quotaUser`. */
54866
+ userIp?: string;
54867
+ }): Request<GlobalListVmExtensionsResponse>;
53978
54868
  /** Updates a global VM extension policy. */
53979
54869
  update(request: {
53980
54870
  /** V1 error format. */
@@ -57980,6 +58870,120 @@ declare namespace gapi.client {
57980
58870
  },
57981
58871
  body: InstanceGroupManagersApplyUpdatesRequest,
57982
58872
  ): Request<Operation>;
58873
+ /** Updates the accelerator topologies configuration. */
58874
+ configureAcceleratorTopologies(request: {
58875
+ /** V1 error format. */
58876
+ '$.xgafv'?: string;
58877
+ /** OAuth access token. */
58878
+ access_token?: string;
58879
+ /** Data format for response. */
58880
+ alt?: string;
58881
+ /** JSONP */
58882
+ callback?: string;
58883
+ /** Selector specifying which fields to include in a partial response. */
58884
+ fields?: string;
58885
+ /**
58886
+ * The name of the managed instance group.
58887
+ * It should conform to RFC1035.
58888
+ */
58889
+ instanceGroupManager: string;
58890
+ /** 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. */
58891
+ key?: string;
58892
+ /** OAuth 2.0 token for the current user. */
58893
+ oauth_token?: string;
58894
+ /** Returns response with indentations and line breaks. */
58895
+ prettyPrint?: boolean;
58896
+ /** Project ID for this request. */
58897
+ project: string;
58898
+ /** 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. */
58899
+ quotaUser?: string;
58900
+ /**
58901
+ * An optional request ID to identify requests. Specify a unique request ID so
58902
+ * that if you must retry your request, the server will know to ignore the
58903
+ * request if it has already been completed.
58904
+ *
58905
+ * For example, consider a situation where you make an initial request and
58906
+ * the request times out. If you make the request again with the same
58907
+ * request ID, the server can check if original operation with the same
58908
+ * request ID was received, and if so, will ignore the second request.
58909
+ *
58910
+ * The request ID must be
58911
+ * a valid UUID with the exception that zero UUID is not supported
58912
+ * (00000000-0000-0000-0000-000000000000).
58913
+ */
58914
+ requestId?: string;
58915
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
58916
+ upload_protocol?: string;
58917
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
58918
+ uploadType?: string;
58919
+ /** Legacy name for parameter that has been superseded by `quotaUser`. */
58920
+ userIp?: string;
58921
+ /**
58922
+ * The name of thezone
58923
+ * where the managed instance group is located.
58924
+ * It should conform to RFC1035.
58925
+ */
58926
+ zone: string;
58927
+ /** Request body */
58928
+ resource: InstanceGroupManagersConfigureAcceleratorTopologiesRequest;
58929
+ }): Request<Operation>;
58930
+ configureAcceleratorTopologies(
58931
+ request: {
58932
+ /** V1 error format. */
58933
+ '$.xgafv'?: string;
58934
+ /** OAuth access token. */
58935
+ access_token?: string;
58936
+ /** Data format for response. */
58937
+ alt?: string;
58938
+ /** JSONP */
58939
+ callback?: string;
58940
+ /** Selector specifying which fields to include in a partial response. */
58941
+ fields?: string;
58942
+ /**
58943
+ * The name of the managed instance group.
58944
+ * It should conform to RFC1035.
58945
+ */
58946
+ instanceGroupManager: string;
58947
+ /** 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. */
58948
+ key?: string;
58949
+ /** OAuth 2.0 token for the current user. */
58950
+ oauth_token?: string;
58951
+ /** Returns response with indentations and line breaks. */
58952
+ prettyPrint?: boolean;
58953
+ /** Project ID for this request. */
58954
+ project: string;
58955
+ /** 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. */
58956
+ quotaUser?: string;
58957
+ /**
58958
+ * An optional request ID to identify requests. Specify a unique request ID so
58959
+ * that if you must retry your request, the server will know to ignore the
58960
+ * request if it has already been completed.
58961
+ *
58962
+ * For example, consider a situation where you make an initial request and
58963
+ * the request times out. If you make the request again with the same
58964
+ * request ID, the server can check if original operation with the same
58965
+ * request ID was received, and if so, will ignore the second request.
58966
+ *
58967
+ * The request ID must be
58968
+ * a valid UUID with the exception that zero UUID is not supported
58969
+ * (00000000-0000-0000-0000-000000000000).
58970
+ */
58971
+ requestId?: string;
58972
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
58973
+ upload_protocol?: string;
58974
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
58975
+ uploadType?: string;
58976
+ /** Legacy name for parameter that has been superseded by `quotaUser`. */
58977
+ userIp?: string;
58978
+ /**
58979
+ * The name of thezone
58980
+ * where the managed instance group is located.
58981
+ * It should conform to RFC1035.
58982
+ */
58983
+ zone: string;
58984
+ },
58985
+ body: InstanceGroupManagersConfigureAcceleratorTopologiesRequest,
58986
+ ): Request<Operation>;
57983
58987
  /**
57984
58988
  * Creates instances with per-instance configurations in this managed instance
57985
58989
  * group. Instances are created using the current instance template. Thecreate instances operation is marked DONE if thecreateInstances request is successful. The underlying actions
@@ -63235,6 +64239,44 @@ declare namespace gapi.client {
63235
64239
  /** The name of the zone for this request. */
63236
64240
  zone: string;
63237
64241
  }): Request<ShieldedVmIdentity>;
64242
+ /**
64243
+ * Retrieves details of a specific VM extension state.
64244
+ * This is a read-only API.
64245
+ */
64246
+ getVmExtensionState(request?: {
64247
+ /** V1 error format. */
64248
+ '$.xgafv'?: string;
64249
+ /** OAuth access token. */
64250
+ access_token?: string;
64251
+ /** Data format for response. */
64252
+ alt?: string;
64253
+ /** JSONP */
64254
+ callback?: string;
64255
+ /** The name of the extension to get the state for. */
64256
+ extensionName: string;
64257
+ /** Selector specifying which fields to include in a partial response. */
64258
+ fields?: string;
64259
+ /** Name or id of the instance resource. */
64260
+ instance: string;
64261
+ /** 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. */
64262
+ key?: string;
64263
+ /** OAuth 2.0 token for the current user. */
64264
+ oauth_token?: string;
64265
+ /** Returns response with indentations and line breaks. */
64266
+ prettyPrint?: boolean;
64267
+ /** Project ID for this request. */
64268
+ project: string;
64269
+ /** 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. */
64270
+ quotaUser?: string;
64271
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
64272
+ upload_protocol?: string;
64273
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
64274
+ uploadType?: string;
64275
+ /** Legacy name for parameter that has been superseded by `quotaUser`. */
64276
+ userIp?: string;
64277
+ /** Name of the zone for this request. */
64278
+ zone: string;
64279
+ }): Request<VmExtensionState>;
63238
64280
  /**
63239
64281
  * Creates an instance resource in the specified project using the data
63240
64282
  * included in the request.
@@ -63658,8 +64700,11 @@ declare namespace gapi.client {
63658
64700
  /** The name of the zone for this request. */
63659
64701
  zone: string;
63660
64702
  }): Request<InstanceListReferrers>;
63661
- /** Patches partner metadata of the specified instance. */
63662
- patchPartnerMetadata(request: {
64703
+ /**
64704
+ * Lists all VM extensions states for a specific instance.
64705
+ * This is a read-only API.
64706
+ */
64707
+ listVmExtensionStates(request?: {
63663
64708
  /** V1 error format. */
63664
64709
  '$.xgafv'?: string;
63665
64710
  /** OAuth access token. */
@@ -63670,114 +64715,101 @@ declare namespace gapi.client {
63670
64715
  callback?: string;
63671
64716
  /** Selector specifying which fields to include in a partial response. */
63672
64717
  fields?: string;
63673
- /** Name of the instance scoping this request. */
63674
- instance: string;
63675
- /** 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. */
63676
- key?: string;
63677
- /** OAuth 2.0 token for the current user. */
63678
- oauth_token?: string;
63679
- /** Returns response with indentations and line breaks. */
63680
- prettyPrint?: boolean;
63681
- /** Project ID for this request. */
63682
- project: string;
63683
- /** 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. */
63684
- quotaUser?: string;
63685
64718
  /**
63686
- * An optional request ID to identify requests. Specify a unique request ID so
63687
- * that if you must retry your request, the server will know to ignore the
63688
- * request if it has already been completed.
64719
+ * A filter expression that filters resources listed in the response. Most
64720
+ * Compute resources support two types of filter expressions:
64721
+ * expressions that support regular expressions and expressions that follow
64722
+ * API improvement proposal AIP-160.
64723
+ * These two types of filter expressions cannot be mixed in one request.
63689
64724
  *
63690
- * For example, consider a situation where you make an initial request and
63691
- * the request times out. If you make the request again with the same
63692
- * request ID, the server can check if original operation with the same
63693
- * request ID was received, and if so, will ignore the second request. This
63694
- * prevents clients from accidentally creating duplicate commitments.
64725
+ * If you want to use AIP-160, your expression must specify the field name, an
64726
+ * operator, and the value that you want to use for filtering. The value
64727
+ * must be a string, a number, or a boolean. The operator
64728
+ * must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`.
63695
64729
  *
63696
- * The request ID must be
63697
- * a valid UUID with the exception that zero UUID is not supported
63698
- * (00000000-0000-0000-0000-000000000000).
64730
+ * For example, if you are filtering Compute Engine instances, you can
64731
+ * exclude instances named `example-instance` by specifying
64732
+ * `name != example-instance`.
64733
+ *
64734
+ * The `:*` comparison can be used to test whether a key has been defined.
64735
+ * For example, to find all objects with `owner` label use:
64736
+ * ```
64737
+ * labels.owner:*
64738
+ * ```
64739
+ *
64740
+ * You can also filter nested fields. For example, you could specify
64741
+ * `scheduling.automaticRestart = false` to include instances only
64742
+ * if they are not scheduled for automatic restarts. You can use filtering
64743
+ * on nested fields to filter based onresource labels.
64744
+ *
64745
+ * To filter on multiple expressions, provide each separate expression within
64746
+ * parentheses. For example:
64747
+ * ```
64748
+ * (scheduling.automaticRestart = true)
64749
+ * (cpuPlatform = "Intel Skylake")
64750
+ * ```
64751
+ * By default, each expression is an `AND` expression. However, you
64752
+ * can include `AND` and `OR` expressions explicitly.
64753
+ * For example:
64754
+ * ```
64755
+ * (cpuPlatform = "Intel Skylake") OR
64756
+ * (cpuPlatform = "Intel Broadwell") AND
64757
+ * (scheduling.automaticRestart = true)
64758
+ * ```
64759
+ *
64760
+ * If you want to use a regular expression, use the `eq` (equal) or `ne`
64761
+ * (not equal) operator against a single un-parenthesized expression with or
64762
+ * without quotes or against multiple parenthesized expressions. Examples:
64763
+ *
64764
+ * `fieldname eq unquoted literal`
64765
+ * `fieldname eq 'single quoted literal'`
64766
+ * `fieldname eq "double quoted literal"`
64767
+ * `(fieldname1 eq literal) (fieldname2 ne "literal")`
64768
+ *
64769
+ * The literal value is interpreted as a regular expression using GoogleRE2 library syntax.
64770
+ * The literal value must match the entire field.
64771
+ *
64772
+ * For example, to filter for instances that do not end with name "instance",
64773
+ * you would use `name ne .*instance`.
64774
+ *
64775
+ * You cannot combine constraints on multiple fields using regular
64776
+ * expressions.
63699
64777
  */
63700
- requestId?: string;
63701
- /** Upload protocol for media (e.g. "raw", "multipart"). */
63702
- upload_protocol?: string;
63703
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
63704
- uploadType?: string;
63705
- /** Legacy name for parameter that has been superseded by `quotaUser`. */
63706
- userIp?: string;
63707
- /** The name of the zone for this request. */
63708
- zone: string;
63709
- /** Request body */
63710
- resource: PartnerMetadata;
63711
- }): Request<Operation>;
63712
- patchPartnerMetadata(
63713
- request: {
63714
- /** V1 error format. */
63715
- '$.xgafv'?: string;
63716
- /** OAuth access token. */
63717
- access_token?: string;
63718
- /** Data format for response. */
63719
- alt?: string;
63720
- /** JSONP */
63721
- callback?: string;
63722
- /** Selector specifying which fields to include in a partial response. */
63723
- fields?: string;
63724
- /** Name of the instance scoping this request. */
63725
- instance: string;
63726
- /** 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. */
63727
- key?: string;
63728
- /** OAuth 2.0 token for the current user. */
63729
- oauth_token?: string;
63730
- /** Returns response with indentations and line breaks. */
63731
- prettyPrint?: boolean;
63732
- /** Project ID for this request. */
63733
- project: string;
63734
- /** 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. */
63735
- quotaUser?: string;
63736
- /**
63737
- * An optional request ID to identify requests. Specify a unique request ID so
63738
- * that if you must retry your request, the server will know to ignore the
63739
- * request if it has already been completed.
63740
- *
63741
- * For example, consider a situation where you make an initial request and
63742
- * the request times out. If you make the request again with the same
63743
- * request ID, the server can check if original operation with the same
63744
- * request ID was received, and if so, will ignore the second request. This
63745
- * prevents clients from accidentally creating duplicate commitments.
63746
- *
63747
- * The request ID must be
63748
- * a valid UUID with the exception that zero UUID is not supported
63749
- * (00000000-0000-0000-0000-000000000000).
63750
- */
63751
- requestId?: string;
63752
- /** Upload protocol for media (e.g. "raw", "multipart"). */
63753
- upload_protocol?: string;
63754
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
63755
- uploadType?: string;
63756
- /** Legacy name for parameter that has been superseded by `quotaUser`. */
63757
- userIp?: string;
63758
- /** The name of the zone for this request. */
63759
- zone: string;
63760
- },
63761
- body: PartnerMetadata,
63762
- ): Request<Operation>;
63763
- /** Perform a manual maintenance on the instance. */
63764
- performMaintenance(request?: {
63765
- /** V1 error format. */
63766
- '$.xgafv'?: string;
63767
- /** OAuth access token. */
63768
- access_token?: string;
63769
- /** Data format for response. */
63770
- alt?: string;
63771
- /** JSONP */
63772
- callback?: string;
63773
- /** Selector specifying which fields to include in a partial response. */
63774
- fields?: string;
63775
- /** Name of the instance scoping this request. */
64778
+ filter?: string;
64779
+ /** Name of the target instance scoping this request. */
63776
64780
  instance: string;
63777
64781
  /** 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. */
63778
64782
  key?: string;
64783
+ /**
64784
+ * The maximum number of results per page that should be returned.
64785
+ * If the number of available results is larger than `maxResults`,
64786
+ * Compute Engine returns a `nextPageToken` that can be used to get
64787
+ * the next page of results in subsequent list requests. Acceptable values are
64788
+ * `0` to `500`, inclusive. (Default: `500`)
64789
+ */
64790
+ maxResults?: number;
63779
64791
  /** OAuth 2.0 token for the current user. */
63780
64792
  oauth_token?: string;
64793
+ /**
64794
+ * Sorts list results by a certain order. By default, results
64795
+ * are returned in alphanumerical order based on the resource name.
64796
+ *
64797
+ * You can also sort results in descending order based on the creation
64798
+ * timestamp using `orderBy="creationTimestamp desc"`. This sorts
64799
+ * results based on the `creationTimestamp` field in
64800
+ * reverse chronological order (newest result first). Use this to sort
64801
+ * resources like operations so that the newest operation is returned first.
64802
+ *
64803
+ * Currently, only sorting by `name` or
64804
+ * `creationTimestamp desc` is supported.
64805
+ */
64806
+ orderBy?: string;
64807
+ /**
64808
+ * Specifies a page token to use. Set `pageToken` to the
64809
+ * `nextPageToken` returned by a previous list request to get
64810
+ * the next page of results.
64811
+ */
64812
+ pageToken?: string;
63781
64813
  /** Returns response with indentations and line breaks. */
63782
64814
  prettyPrint?: boolean;
63783
64815
  /** Project ID for this request. */
@@ -63785,32 +64817,25 @@ declare namespace gapi.client {
63785
64817
  /** 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. */
63786
64818
  quotaUser?: string;
63787
64819
  /**
63788
- * An optional request ID to identify requests. Specify a unique request ID so
63789
- * that if you must retry your request, the server will know to ignore the
63790
- * request if it has already been completed.
63791
- *
63792
- * For example, consider a situation where you make an initial request and
63793
- * the request times out. If you make the request again with the same
63794
- * request ID, the server can check if original operation with the same
63795
- * request ID was received, and if so, will ignore the second request. This
63796
- * prevents clients from accidentally creating duplicate commitments.
64820
+ * Opt-in for partial success behavior which provides partial results in case
64821
+ * of failure. The default value is false.
63797
64822
  *
63798
- * The request ID must be
63799
- * a valid UUID with the exception that zero UUID is not supported
63800
- * (00000000-0000-0000-0000-000000000000).
64823
+ * For example, when partial success behavior is enabled, aggregatedList for a
64824
+ * single zone scope either returns all resources in the zone or no resources,
64825
+ * with an error code.
63801
64826
  */
63802
- requestId?: string;
64827
+ returnPartialSuccess?: boolean;
63803
64828
  /** Upload protocol for media (e.g. "raw", "multipart"). */
63804
64829
  upload_protocol?: string;
63805
64830
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
63806
64831
  uploadType?: string;
63807
64832
  /** Legacy name for parameter that has been superseded by `quotaUser`. */
63808
64833
  userIp?: string;
63809
- /** The name of the zone for this request. */
64834
+ /** Required. Name of the zone for this request. */
63810
64835
  zone: string;
63811
- }): Request<Operation>;
63812
- /** Removes resource policies from an instance. */
63813
- removeResourcePolicies(request: {
64836
+ }): Request<ListVmExtensionStatesResponse>;
64837
+ /** Patches partner metadata of the specified instance. */
64838
+ patchPartnerMetadata(request: {
63814
64839
  /** V1 error format. */
63815
64840
  '$.xgafv'?: string;
63816
64841
  /** OAuth access token. */
@@ -63821,7 +64846,7 @@ declare namespace gapi.client {
63821
64846
  callback?: string;
63822
64847
  /** Selector specifying which fields to include in a partial response. */
63823
64848
  fields?: string;
63824
- /** The instance name for this request. */
64849
+ /** Name of the instance scoping this request. */
63825
64850
  instance: string;
63826
64851
  /** 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. */
63827
64852
  key?: string;
@@ -63858,9 +64883,9 @@ declare namespace gapi.client {
63858
64883
  /** The name of the zone for this request. */
63859
64884
  zone: string;
63860
64885
  /** Request body */
63861
- resource: InstancesRemoveResourcePoliciesRequest;
64886
+ resource: PartnerMetadata;
63862
64887
  }): Request<Operation>;
63863
- removeResourcePolicies(
64888
+ patchPartnerMetadata(
63864
64889
  request: {
63865
64890
  /** V1 error format. */
63866
64891
  '$.xgafv'?: string;
@@ -63872,7 +64897,7 @@ declare namespace gapi.client {
63872
64897
  callback?: string;
63873
64898
  /** Selector specifying which fields to include in a partial response. */
63874
64899
  fields?: string;
63875
- /** The instance name for this request. */
64900
+ /** Name of the instance scoping this request. */
63876
64901
  instance: string;
63877
64902
  /** 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. */
63878
64903
  key?: string;
@@ -63909,10 +64934,161 @@ declare namespace gapi.client {
63909
64934
  /** The name of the zone for this request. */
63910
64935
  zone: string;
63911
64936
  },
63912
- body: InstancesRemoveResourcePoliciesRequest,
64937
+ body: PartnerMetadata,
63913
64938
  ): Request<Operation>;
63914
- /** Mark the host as faulty and try to restart the instance on a new host. */
63915
- reportHostAsFaulty(request: {
64939
+ /** Perform a manual maintenance on the instance. */
64940
+ performMaintenance(request?: {
64941
+ /** V1 error format. */
64942
+ '$.xgafv'?: string;
64943
+ /** OAuth access token. */
64944
+ access_token?: string;
64945
+ /** Data format for response. */
64946
+ alt?: string;
64947
+ /** JSONP */
64948
+ callback?: string;
64949
+ /** Selector specifying which fields to include in a partial response. */
64950
+ fields?: string;
64951
+ /** Name of the instance scoping this request. */
64952
+ instance: string;
64953
+ /** 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. */
64954
+ key?: string;
64955
+ /** OAuth 2.0 token for the current user. */
64956
+ oauth_token?: string;
64957
+ /** Returns response with indentations and line breaks. */
64958
+ prettyPrint?: boolean;
64959
+ /** Project ID for this request. */
64960
+ project: string;
64961
+ /** 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. */
64962
+ quotaUser?: string;
64963
+ /**
64964
+ * An optional request ID to identify requests. Specify a unique request ID so
64965
+ * that if you must retry your request, the server will know to ignore the
64966
+ * request if it has already been completed.
64967
+ *
64968
+ * For example, consider a situation where you make an initial request and
64969
+ * the request times out. If you make the request again with the same
64970
+ * request ID, the server can check if original operation with the same
64971
+ * request ID was received, and if so, will ignore the second request. This
64972
+ * prevents clients from accidentally creating duplicate commitments.
64973
+ *
64974
+ * The request ID must be
64975
+ * a valid UUID with the exception that zero UUID is not supported
64976
+ * (00000000-0000-0000-0000-000000000000).
64977
+ */
64978
+ requestId?: string;
64979
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
64980
+ upload_protocol?: string;
64981
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
64982
+ uploadType?: string;
64983
+ /** Legacy name for parameter that has been superseded by `quotaUser`. */
64984
+ userIp?: string;
64985
+ /** The name of the zone for this request. */
64986
+ zone: string;
64987
+ }): Request<Operation>;
64988
+ /** Removes resource policies from an instance. */
64989
+ removeResourcePolicies(request: {
64990
+ /** V1 error format. */
64991
+ '$.xgafv'?: string;
64992
+ /** OAuth access token. */
64993
+ access_token?: string;
64994
+ /** Data format for response. */
64995
+ alt?: string;
64996
+ /** JSONP */
64997
+ callback?: string;
64998
+ /** Selector specifying which fields to include in a partial response. */
64999
+ fields?: string;
65000
+ /** The instance name for this request. */
65001
+ instance: string;
65002
+ /** 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. */
65003
+ key?: string;
65004
+ /** OAuth 2.0 token for the current user. */
65005
+ oauth_token?: string;
65006
+ /** Returns response with indentations and line breaks. */
65007
+ prettyPrint?: boolean;
65008
+ /** Project ID for this request. */
65009
+ project: string;
65010
+ /** 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. */
65011
+ quotaUser?: string;
65012
+ /**
65013
+ * An optional request ID to identify requests. Specify a unique request ID so
65014
+ * that if you must retry your request, the server will know to ignore the
65015
+ * request if it has already been completed.
65016
+ *
65017
+ * For example, consider a situation where you make an initial request and
65018
+ * the request times out. If you make the request again with the same
65019
+ * request ID, the server can check if original operation with the same
65020
+ * request ID was received, and if so, will ignore the second request. This
65021
+ * prevents clients from accidentally creating duplicate commitments.
65022
+ *
65023
+ * The request ID must be
65024
+ * a valid UUID with the exception that zero UUID is not supported
65025
+ * (00000000-0000-0000-0000-000000000000).
65026
+ */
65027
+ requestId?: string;
65028
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
65029
+ upload_protocol?: string;
65030
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
65031
+ uploadType?: string;
65032
+ /** Legacy name for parameter that has been superseded by `quotaUser`. */
65033
+ userIp?: string;
65034
+ /** The name of the zone for this request. */
65035
+ zone: string;
65036
+ /** Request body */
65037
+ resource: InstancesRemoveResourcePoliciesRequest;
65038
+ }): Request<Operation>;
65039
+ removeResourcePolicies(
65040
+ request: {
65041
+ /** V1 error format. */
65042
+ '$.xgafv'?: string;
65043
+ /** OAuth access token. */
65044
+ access_token?: string;
65045
+ /** Data format for response. */
65046
+ alt?: string;
65047
+ /** JSONP */
65048
+ callback?: string;
65049
+ /** Selector specifying which fields to include in a partial response. */
65050
+ fields?: string;
65051
+ /** The instance name for this request. */
65052
+ instance: string;
65053
+ /** 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. */
65054
+ key?: string;
65055
+ /** OAuth 2.0 token for the current user. */
65056
+ oauth_token?: string;
65057
+ /** Returns response with indentations and line breaks. */
65058
+ prettyPrint?: boolean;
65059
+ /** Project ID for this request. */
65060
+ project: string;
65061
+ /** 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. */
65062
+ quotaUser?: string;
65063
+ /**
65064
+ * An optional request ID to identify requests. Specify a unique request ID so
65065
+ * that if you must retry your request, the server will know to ignore the
65066
+ * request if it has already been completed.
65067
+ *
65068
+ * For example, consider a situation where you make an initial request and
65069
+ * the request times out. If you make the request again with the same
65070
+ * request ID, the server can check if original operation with the same
65071
+ * request ID was received, and if so, will ignore the second request. This
65072
+ * prevents clients from accidentally creating duplicate commitments.
65073
+ *
65074
+ * The request ID must be
65075
+ * a valid UUID with the exception that zero UUID is not supported
65076
+ * (00000000-0000-0000-0000-000000000000).
65077
+ */
65078
+ requestId?: string;
65079
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
65080
+ upload_protocol?: string;
65081
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
65082
+ uploadType?: string;
65083
+ /** Legacy name for parameter that has been superseded by `quotaUser`. */
65084
+ userIp?: string;
65085
+ /** The name of the zone for this request. */
65086
+ zone: string;
65087
+ },
65088
+ body: InstancesRemoveResourcePoliciesRequest,
65089
+ ): Request<Operation>;
65090
+ /** Mark the host as faulty and try to restart the instance on a new host. */
65091
+ reportHostAsFaulty(request: {
63916
65092
  /** V1 error format. */
63917
65093
  '$.xgafv'?: string;
63918
65094
  /** OAuth access token. */
@@ -66025,6 +67201,11 @@ declare namespace gapi.client {
66025
67201
  * This property if set to true will clear secure tags regardless of theresource.secure_tags.
66026
67202
  */
66027
67203
  clearSecureTag?: boolean;
67204
+ /**
67205
+ * Whether to discard local SSDs from the instance during restart
67206
+ * default value is false.
67207
+ */
67208
+ discardLocalSsd?: boolean;
66028
67209
  /** Selector specifying which fields to include in a partial response. */
66029
67210
  fields?: string;
66030
67211
  /** Name of the instance resource to update. */
@@ -66097,6 +67278,11 @@ declare namespace gapi.client {
66097
67278
  * This property if set to true will clear secure tags regardless of theresource.secure_tags.
66098
67279
  */
66099
67280
  clearSecureTag?: boolean;
67281
+ /**
67282
+ * Whether to discard local SSDs from the instance during restart
67283
+ * default value is false.
67284
+ */
67285
+ discardLocalSsd?: boolean;
66100
67286
  /** Selector specifying which fields to include in a partial response. */
66101
67287
  fields?: string;
66102
67288
  /** Name of the instance resource to update. */
@@ -74532,6 +75718,20 @@ declare namespace gapi.client {
74532
75718
  /**
74533
75719
  * Creates a network endpoint group in the specified project using the
74534
75720
  * parameters that are included in the request.
75721
+ *
75722
+ * Note: Use the following APIs to manage network endpoint groups:
75723
+ *
75724
+ * -
75725
+ * To manage NEGs with zonal scope (such as zonal NEGs, hybrid connectivity
75726
+ * NEGs): zonal
75727
+ * API
75728
+ * -
75729
+ * To manage NEGs with regional scope (such as regional internet NEGs,
75730
+ * serverless NEGs, Private Service Connect NEGs): regional
75731
+ * API
75732
+ * -
75733
+ * To manage NEGs with global scope (such as global internet NEGs):global
75734
+ * API
74535
75735
  */
74536
75736
  insert(request: {
74537
75737
  /** V1 error format. */
@@ -81740,6 +82940,135 @@ declare namespace gapi.client {
81740
82940
  userIp?: string;
81741
82941
  }): Request<Operation>;
81742
82942
  }
82943
+ interface OrganizationSnapshotRecycleBinPolicyResource {
82944
+ /** Returns the specified SnapshotRecycleBinPolicy. */
82945
+ get(request?: {
82946
+ /** V1 error format. */
82947
+ '$.xgafv'?: string;
82948
+ /** OAuth access token. */
82949
+ access_token?: string;
82950
+ /** Data format for response. */
82951
+ alt?: string;
82952
+ /** JSONP */
82953
+ callback?: string;
82954
+ /** Selector specifying which fields to include in a partial response. */
82955
+ fields?: string;
82956
+ /** 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. */
82957
+ key?: string;
82958
+ /** OAuth 2.0 token for the current user. */
82959
+ oauth_token?: string;
82960
+ /** Organization ID for this request. */
82961
+ organization: string;
82962
+ /** Returns response with indentations and line breaks. */
82963
+ prettyPrint?: boolean;
82964
+ /** 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. */
82965
+ quotaUser?: string;
82966
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
82967
+ upload_protocol?: string;
82968
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
82969
+ uploadType?: string;
82970
+ /** Legacy name for parameter that has been superseded by `quotaUser`. */
82971
+ userIp?: string;
82972
+ }): Request<SnapshotRecycleBinPolicy>;
82973
+ /** Patches the SnapshotRecycleBinPolicy. */
82974
+ patch(request: {
82975
+ /** V1 error format. */
82976
+ '$.xgafv'?: string;
82977
+ /** OAuth access token. */
82978
+ access_token?: string;
82979
+ /** Data format for response. */
82980
+ alt?: string;
82981
+ /** JSONP */
82982
+ callback?: string;
82983
+ /** Selector specifying which fields to include in a partial response. */
82984
+ fields?: string;
82985
+ /** 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. */
82986
+ key?: string;
82987
+ /** OAuth 2.0 token for the current user. */
82988
+ oauth_token?: string;
82989
+ /** Organization ID for this request. */
82990
+ organization: string;
82991
+ /** Returns response with indentations and line breaks. */
82992
+ prettyPrint?: boolean;
82993
+ /** 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. */
82994
+ quotaUser?: string;
82995
+ /**
82996
+ * An optional request ID to identify requests. Specify a unique request ID so
82997
+ * that if you must retry your request, the server will know to ignore the
82998
+ * request if it has already been completed.
82999
+ *
83000
+ * For example, consider a situation where you make an initial request and
83001
+ * the request times out. If you make the request again with the same
83002
+ * request ID, the server can check if original operation with the same
83003
+ * request ID was received, and if so, will ignore the second request. This
83004
+ * prevents clients from accidentally creating duplicate commitments.
83005
+ *
83006
+ * The request ID must be
83007
+ * a valid UUID with the exception that zero UUID is not supported
83008
+ * (00000000-0000-0000-0000-000000000000).
83009
+ */
83010
+ requestId?: string;
83011
+ /** update_mask indicates fields to be updated as part of this request. */
83012
+ updateMask?: string;
83013
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
83014
+ upload_protocol?: string;
83015
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
83016
+ uploadType?: string;
83017
+ /** Legacy name for parameter that has been superseded by `quotaUser`. */
83018
+ userIp?: string;
83019
+ /** Request body */
83020
+ resource: SnapshotRecycleBinPolicy;
83021
+ }): Request<Operation>;
83022
+ patch(
83023
+ request: {
83024
+ /** V1 error format. */
83025
+ '$.xgafv'?: string;
83026
+ /** OAuth access token. */
83027
+ access_token?: string;
83028
+ /** Data format for response. */
83029
+ alt?: string;
83030
+ /** JSONP */
83031
+ callback?: string;
83032
+ /** Selector specifying which fields to include in a partial response. */
83033
+ fields?: string;
83034
+ /** 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. */
83035
+ key?: string;
83036
+ /** OAuth 2.0 token for the current user. */
83037
+ oauth_token?: string;
83038
+ /** Organization ID for this request. */
83039
+ organization: string;
83040
+ /** Returns response with indentations and line breaks. */
83041
+ prettyPrint?: boolean;
83042
+ /** 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. */
83043
+ quotaUser?: string;
83044
+ /**
83045
+ * An optional request ID to identify requests. Specify a unique request ID so
83046
+ * that if you must retry your request, the server will know to ignore the
83047
+ * request if it has already been completed.
83048
+ *
83049
+ * For example, consider a situation where you make an initial request and
83050
+ * the request times out. If you make the request again with the same
83051
+ * request ID, the server can check if original operation with the same
83052
+ * request ID was received, and if so, will ignore the second request. This
83053
+ * prevents clients from accidentally creating duplicate commitments.
83054
+ *
83055
+ * The request ID must be
83056
+ * a valid UUID with the exception that zero UUID is not supported
83057
+ * (00000000-0000-0000-0000-000000000000).
83058
+ */
83059
+ requestId?: string;
83060
+ /** update_mask indicates fields to be updated as part of this request. */
83061
+ updateMask?: string;
83062
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
83063
+ upload_protocol?: string;
83064
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
83065
+ uploadType?: string;
83066
+ /** Legacy name for parameter that has been superseded by `quotaUser`. */
83067
+ userIp?: string;
83068
+ },
83069
+ body: SnapshotRecycleBinPolicy,
83070
+ ): Request<Operation>;
83071
+ }
81743
83072
  interface PacketMirroringsResource {
81744
83073
  /**
81745
83074
  * Retrieves an aggregated list of packetMirrorings.
@@ -89089,7 +90418,7 @@ declare namespace gapi.client {
89089
90418
  uploadType?: string;
89090
90419
  /** Legacy name for parameter that has been superseded by `quotaUser`. */
89091
90420
  userIp?: string;
89092
- }): Request<CompositeHealthChecksGetHealthResponse>;
90421
+ }): Request<CompositeHealthCheckHealth>;
89093
90422
  /**
89094
90423
  * Create a CompositeHealthCheck in the specified project in the given region
89095
90424
  * using the parameters that are included in the request.
@@ -93385,6 +94714,42 @@ declare namespace gapi.client {
93385
94714
  /** Legacy name for parameter that has been superseded by `quotaUser`. */
93386
94715
  userIp?: string;
93387
94716
  }): Request<HealthSource>;
94717
+ /**
94718
+ * Gets the most recent health check results for this
94719
+ * regional HealthSource.
94720
+ */
94721
+ getHealth(request?: {
94722
+ /** V1 error format. */
94723
+ '$.xgafv'?: string;
94724
+ /** OAuth access token. */
94725
+ access_token?: string;
94726
+ /** Data format for response. */
94727
+ alt?: string;
94728
+ /** JSONP */
94729
+ callback?: string;
94730
+ /** Selector specifying which fields to include in a partial response. */
94731
+ fields?: string;
94732
+ /** Name of the HealthSource resource to get health for. */
94733
+ healthSource: string;
94734
+ /** 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. */
94735
+ key?: string;
94736
+ /** OAuth 2.0 token for the current user. */
94737
+ oauth_token?: string;
94738
+ /** Returns response with indentations and line breaks. */
94739
+ prettyPrint?: boolean;
94740
+ /** Name of the project scoping this request. */
94741
+ project: string;
94742
+ /** 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. */
94743
+ quotaUser?: string;
94744
+ /** Name of the region scoping this request. */
94745
+ region: string;
94746
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
94747
+ upload_protocol?: string;
94748
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
94749
+ uploadType?: string;
94750
+ /** Legacy name for parameter that has been superseded by `quotaUser`. */
94751
+ userIp?: string;
94752
+ }): Request<HealthSourceHealth>;
93388
94753
  /**
93389
94754
  * Create a HealthSource in the specified project in the given region
93390
94755
  * using the parameters that are included in the request.
@@ -99925,6 +101290,20 @@ declare namespace gapi.client {
99925
101290
  /**
99926
101291
  * Creates a network endpoint group in the specified project using the
99927
101292
  * parameters that are included in the request.
101293
+ *
101294
+ * Note: Use the following APIs to manage network endpoint groups:
101295
+ *
101296
+ * -
101297
+ * To manage NEGs with zonal scope (such as zonal NEGs, hybrid connectivity
101298
+ * NEGs): zonal
101299
+ * API
101300
+ * -
101301
+ * To manage NEGs with regional scope (such as regional internet NEGs,
101302
+ * serverless NEGs, Private Service Connect NEGs): regional
101303
+ * API
101304
+ * -
101305
+ * To manage NEGs with global scope (such as global internet NEGs):global
101306
+ * API
99928
101307
  */
99929
101308
  insert(request: {
99930
101309
  /** V1 error format. */
@@ -109966,6 +111345,124 @@ declare namespace gapi.client {
109966
111345
  /** The name of the zone for this request, formatted as RFC1035. */
109967
111346
  zone: string;
109968
111347
  }): Request<ReservationSlotsGetResponse>;
111348
+ /** Allows customers to get SBOM versions of a reservation slot. */
111349
+ getVersion(request: {
111350
+ /** V1 error format. */
111351
+ '$.xgafv'?: string;
111352
+ /** OAuth access token. */
111353
+ access_token?: string;
111354
+ /** Data format for response. */
111355
+ alt?: string;
111356
+ /** JSONP */
111357
+ callback?: string;
111358
+ /** Selector specifying which fields to include in a partial response. */
111359
+ fields?: string;
111360
+ /** 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. */
111361
+ key?: string;
111362
+ /** OAuth 2.0 token for the current user. */
111363
+ oauth_token?: string;
111364
+ /**
111365
+ * The name of the parent reservation and parent block. In the format of
111366
+ * reservations/{reservation_name}/reservationBlocks/{reservation_block_name}/reservationSubBlocks/{reservation_sub_block_name}
111367
+ */
111368
+ parentName: string;
111369
+ /** Returns response with indentations and line breaks. */
111370
+ prettyPrint?: boolean;
111371
+ /** Project ID for this request. */
111372
+ project: string;
111373
+ /** 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. */
111374
+ quotaUser?: string;
111375
+ /**
111376
+ * An optional request ID to identify requests. Specify a unique request ID so
111377
+ * that if you must retry your request, the server will know to ignore the
111378
+ * request if it has already been completed.
111379
+ *
111380
+ * For example, consider a situation where you make an initial request and
111381
+ * the request times out. If you make the request again with the same
111382
+ * request ID, the server can check if original operation with the same
111383
+ * request ID was received, and if so, will ignore the second request. This
111384
+ * prevents clients from accidentally creating duplicate commitments.
111385
+ *
111386
+ * The request ID must be
111387
+ * a valid UUID with the exception that zero UUID is not supported
111388
+ * (00000000-0000-0000-0000-000000000000).
111389
+ */
111390
+ requestId?: string;
111391
+ /**
111392
+ * The name of the reservation slot.
111393
+ * Name should conform to RFC1035 or be a resource ID.
111394
+ */
111395
+ reservationSlot: string;
111396
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
111397
+ upload_protocol?: string;
111398
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
111399
+ uploadType?: string;
111400
+ /** Legacy name for parameter that has been superseded by `quotaUser`. */
111401
+ userIp?: string;
111402
+ /** Name of the zone for this request. Zone name should conform to RFC1035. */
111403
+ zone: string;
111404
+ /** Request body */
111405
+ resource: ReservationSlotsGetVersionRequest;
111406
+ }): Request<Operation>;
111407
+ getVersion(
111408
+ request: {
111409
+ /** V1 error format. */
111410
+ '$.xgafv'?: string;
111411
+ /** OAuth access token. */
111412
+ access_token?: string;
111413
+ /** Data format for response. */
111414
+ alt?: string;
111415
+ /** JSONP */
111416
+ callback?: string;
111417
+ /** Selector specifying which fields to include in a partial response. */
111418
+ fields?: string;
111419
+ /** 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. */
111420
+ key?: string;
111421
+ /** OAuth 2.0 token for the current user. */
111422
+ oauth_token?: string;
111423
+ /**
111424
+ * The name of the parent reservation and parent block. In the format of
111425
+ * reservations/{reservation_name}/reservationBlocks/{reservation_block_name}/reservationSubBlocks/{reservation_sub_block_name}
111426
+ */
111427
+ parentName: string;
111428
+ /** Returns response with indentations and line breaks. */
111429
+ prettyPrint?: boolean;
111430
+ /** Project ID for this request. */
111431
+ project: string;
111432
+ /** 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. */
111433
+ quotaUser?: string;
111434
+ /**
111435
+ * An optional request ID to identify requests. Specify a unique request ID so
111436
+ * that if you must retry your request, the server will know to ignore the
111437
+ * request if it has already been completed.
111438
+ *
111439
+ * For example, consider a situation where you make an initial request and
111440
+ * the request times out. If you make the request again with the same
111441
+ * request ID, the server can check if original operation with the same
111442
+ * request ID was received, and if so, will ignore the second request. This
111443
+ * prevents clients from accidentally creating duplicate commitments.
111444
+ *
111445
+ * The request ID must be
111446
+ * a valid UUID with the exception that zero UUID is not supported
111447
+ * (00000000-0000-0000-0000-000000000000).
111448
+ */
111449
+ requestId?: string;
111450
+ /**
111451
+ * The name of the reservation slot.
111452
+ * Name should conform to RFC1035 or be a resource ID.
111453
+ */
111454
+ reservationSlot: string;
111455
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
111456
+ upload_protocol?: string;
111457
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
111458
+ uploadType?: string;
111459
+ /** Legacy name for parameter that has been superseded by `quotaUser`. */
111460
+ userIp?: string;
111461
+ /** Name of the zone for this request. Zone name should conform to RFC1035. */
111462
+ zone: string;
111463
+ },
111464
+ body: ReservationSlotsGetVersionRequest,
111465
+ ): Request<Operation>;
109969
111466
  /** Retrieves a list of reservation slots under a single reservation. */
109970
111467
  list(request?: {
109971
111468
  /** V1 error format. */
@@ -110100,6 +111597,84 @@ declare namespace gapi.client {
110100
111597
  /** The name of the zone for this request, formatted as RFC1035. */
110101
111598
  zone: string;
110102
111599
  }): Request<ReservationSlotsListResponse>;
111600
+ /** Update a reservation slot in the specified sub-block. */
111601
+ update(request: {
111602
+ /** V1 error format. */
111603
+ '$.xgafv'?: string;
111604
+ /** OAuth access token. */
111605
+ access_token?: string;
111606
+ /** Data format for response. */
111607
+ alt?: string;
111608
+ /** JSONP */
111609
+ callback?: string;
111610
+ /** Selector specifying which fields to include in a partial response. */
111611
+ fields?: string;
111612
+ /** 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. */
111613
+ key?: string;
111614
+ /** OAuth 2.0 token for the current user. */
111615
+ oauth_token?: string;
111616
+ /** The name of the sub-block resource. */
111617
+ parentName: string;
111618
+ /** Returns response with indentations and line breaks. */
111619
+ prettyPrint?: boolean;
111620
+ /** The project ID for this request. */
111621
+ project: string;
111622
+ /** 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. */
111623
+ quotaUser?: string;
111624
+ /** The name of the slot resource. */
111625
+ reservationSlot: string;
111626
+ /** The fields to be updated as part of this request. */
111627
+ updateMask?: string;
111628
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
111629
+ upload_protocol?: string;
111630
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
111631
+ uploadType?: string;
111632
+ /** Legacy name for parameter that has been superseded by `quotaUser`. */
111633
+ userIp?: string;
111634
+ /** The name of the zone for this request, formatted as RFC1035. */
111635
+ zone: string;
111636
+ /** Request body */
111637
+ resource: ReservationSlot;
111638
+ }): Request<Operation>;
111639
+ update(
111640
+ request: {
111641
+ /** V1 error format. */
111642
+ '$.xgafv'?: string;
111643
+ /** OAuth access token. */
111644
+ access_token?: string;
111645
+ /** Data format for response. */
111646
+ alt?: string;
111647
+ /** JSONP */
111648
+ callback?: string;
111649
+ /** Selector specifying which fields to include in a partial response. */
111650
+ fields?: string;
111651
+ /** 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. */
111652
+ key?: string;
111653
+ /** OAuth 2.0 token for the current user. */
111654
+ oauth_token?: string;
111655
+ /** The name of the sub-block resource. */
111656
+ parentName: string;
111657
+ /** Returns response with indentations and line breaks. */
111658
+ prettyPrint?: boolean;
111659
+ /** The project ID for this request. */
111660
+ project: string;
111661
+ /** 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. */
111662
+ quotaUser?: string;
111663
+ /** The name of the slot resource. */
111664
+ reservationSlot: string;
111665
+ /** The fields to be updated as part of this request. */
111666
+ updateMask?: string;
111667
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
111668
+ upload_protocol?: string;
111669
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
111670
+ uploadType?: string;
111671
+ /** Legacy name for parameter that has been superseded by `quotaUser`. */
111672
+ userIp?: string;
111673
+ /** The name of the zone for this request, formatted as RFC1035. */
111674
+ zone: string;
111675
+ },
111676
+ body: ReservationSlot,
111677
+ ): Request<Operation>;
110103
111678
  }
110104
111679
  interface ReservationSubBlocksResource {
110105
111680
  /** Retrieves information about the specified reservation subBlock. */
@@ -110145,6 +111720,124 @@ declare namespace gapi.client {
110145
111720
  /** Name of the zone for this request. Zone name should conform to RFC1035. */
110146
111721
  zone: string;
110147
111722
  }): Request<ReservationSubBlocksGetResponse>;
111723
+ /** Allows customers to get SBOM versions of a reservation subBlock. */
111724
+ getVersion(request: {
111725
+ /** V1 error format. */
111726
+ '$.xgafv'?: string;
111727
+ /** OAuth access token. */
111728
+ access_token?: string;
111729
+ /** Data format for response. */
111730
+ alt?: string;
111731
+ /** JSONP */
111732
+ callback?: string;
111733
+ /** Selector specifying which fields to include in a partial response. */
111734
+ fields?: string;
111735
+ /** 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. */
111736
+ key?: string;
111737
+ /** OAuth 2.0 token for the current user. */
111738
+ oauth_token?: string;
111739
+ /**
111740
+ * The name of the parent reservation and parent block. In the format of
111741
+ * reservations/{reservation_name}/reservationBlocks/{reservation_block_name}
111742
+ */
111743
+ parentName: string;
111744
+ /** Returns response with indentations and line breaks. */
111745
+ prettyPrint?: boolean;
111746
+ /** Project ID for this request. */
111747
+ project: string;
111748
+ /** 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. */
111749
+ quotaUser?: string;
111750
+ /**
111751
+ * An optional request ID to identify requests. Specify a unique request ID so
111752
+ * that if you must retry your request, the server will know to ignore the
111753
+ * request if it has already been completed.
111754
+ *
111755
+ * For example, consider a situation where you make an initial request and
111756
+ * the request times out. If you make the request again with the same
111757
+ * request ID, the server can check if original operation with the same
111758
+ * request ID was received, and if so, will ignore the second request. This
111759
+ * prevents clients from accidentally creating duplicate commitments.
111760
+ *
111761
+ * The request ID must be
111762
+ * a valid UUID with the exception that zero UUID is not supported
111763
+ * (00000000-0000-0000-0000-000000000000).
111764
+ */
111765
+ requestId?: string;
111766
+ /**
111767
+ * The name of the reservation subBlock.
111768
+ * Name should conform to RFC1035 or be a resource ID.
111769
+ */
111770
+ reservationSubBlock: string;
111771
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
111772
+ upload_protocol?: string;
111773
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
111774
+ uploadType?: string;
111775
+ /** Legacy name for parameter that has been superseded by `quotaUser`. */
111776
+ userIp?: string;
111777
+ /** Name of the zone for this request. Zone name should conform to RFC1035. */
111778
+ zone: string;
111779
+ /** Request body */
111780
+ resource: ReservationSubBlocksGetVersionRequest;
111781
+ }): Request<Operation>;
111782
+ getVersion(
111783
+ request: {
111784
+ /** V1 error format. */
111785
+ '$.xgafv'?: string;
111786
+ /** OAuth access token. */
111787
+ access_token?: string;
111788
+ /** Data format for response. */
111789
+ alt?: string;
111790
+ /** JSONP */
111791
+ callback?: string;
111792
+ /** Selector specifying which fields to include in a partial response. */
111793
+ fields?: string;
111794
+ /** 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. */
111795
+ key?: string;
111796
+ /** OAuth 2.0 token for the current user. */
111797
+ oauth_token?: string;
111798
+ /**
111799
+ * The name of the parent reservation and parent block. In the format of
111800
+ * reservations/{reservation_name}/reservationBlocks/{reservation_block_name}
111801
+ */
111802
+ parentName: string;
111803
+ /** Returns response with indentations and line breaks. */
111804
+ prettyPrint?: boolean;
111805
+ /** Project ID for this request. */
111806
+ project: string;
111807
+ /** 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. */
111808
+ quotaUser?: string;
111809
+ /**
111810
+ * An optional request ID to identify requests. Specify a unique request ID so
111811
+ * that if you must retry your request, the server will know to ignore the
111812
+ * request if it has already been completed.
111813
+ *
111814
+ * For example, consider a situation where you make an initial request and
111815
+ * the request times out. If you make the request again with the same
111816
+ * request ID, the server can check if original operation with the same
111817
+ * request ID was received, and if so, will ignore the second request. This
111818
+ * prevents clients from accidentally creating duplicate commitments.
111819
+ *
111820
+ * The request ID must be
111821
+ * a valid UUID with the exception that zero UUID is not supported
111822
+ * (00000000-0000-0000-0000-000000000000).
111823
+ */
111824
+ requestId?: string;
111825
+ /**
111826
+ * The name of the reservation subBlock.
111827
+ * Name should conform to RFC1035 or be a resource ID.
111828
+ */
111829
+ reservationSubBlock: string;
111830
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
111831
+ upload_protocol?: string;
111832
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
111833
+ uploadType?: string;
111834
+ /** Legacy name for parameter that has been superseded by `quotaUser`. */
111835
+ userIp?: string;
111836
+ /** Name of the zone for this request. Zone name should conform to RFC1035. */
111837
+ zone: string;
111838
+ },
111839
+ body: ReservationSubBlocksGetVersionRequest,
111840
+ ): Request<Operation>;
110148
111841
  /** Retrieves a list of reservation subBlocks under a single reservation. */
110149
111842
  list(request?: {
110150
111843
  /** V1 error format. */
@@ -111698,6 +113391,112 @@ declare namespace gapi.client {
111698
113391
  /** Legacy name for parameter that has been superseded by `quotaUser`. */
111699
113392
  userIp?: string;
111700
113393
  }): Request<RolloutsListResponse>;
113394
+ /** Pauses a Rollout. */
113395
+ pause(request?: {
113396
+ /** V1 error format. */
113397
+ '$.xgafv'?: string;
113398
+ /** OAuth access token. */
113399
+ access_token?: string;
113400
+ /** Data format for response. */
113401
+ alt?: string;
113402
+ /** JSONP */
113403
+ callback?: string;
113404
+ /**
113405
+ * The etag of the Rollout.
113406
+ * If this is provided, the request will only succeed if the etag matches
113407
+ * the current etag of the Rollout.
113408
+ */
113409
+ etag?: string;
113410
+ /** Selector specifying which fields to include in a partial response. */
113411
+ fields?: string;
113412
+ /** 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. */
113413
+ key?: string;
113414
+ /** OAuth 2.0 token for the current user. */
113415
+ oauth_token?: string;
113416
+ /** Returns response with indentations and line breaks. */
113417
+ prettyPrint?: boolean;
113418
+ /** Required. Project ID for this request. */
113419
+ project: string;
113420
+ /** 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. */
113421
+ quotaUser?: string;
113422
+ /**
113423
+ * An optional request ID to identify requests. Specify a unique request ID so
113424
+ * that if you must retry your request, the server will know to ignore the
113425
+ * request if it has already been completed.
113426
+ *
113427
+ * For example, consider a situation where you make an initial request and
113428
+ * the request times out. If you make the request again with the same
113429
+ * request ID, the server can check if original operation with the same
113430
+ * request ID was received, and if so, will ignore the second request. This
113431
+ * prevents clients from accidentally creating duplicate commitments.
113432
+ *
113433
+ * The request ID must be
113434
+ * a valid UUID with the exception that zero UUID is not supported
113435
+ * (00000000-0000-0000-0000-000000000000).
113436
+ */
113437
+ requestId?: string;
113438
+ /** Required. Name of the Rollout resource to pause. */
113439
+ rollout: string;
113440
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
113441
+ upload_protocol?: string;
113442
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
113443
+ uploadType?: string;
113444
+ /** Legacy name for parameter that has been superseded by `quotaUser`. */
113445
+ userIp?: string;
113446
+ }): Request<Operation>;
113447
+ /** Resumes a Rollout. */
113448
+ resume(request?: {
113449
+ /** V1 error format. */
113450
+ '$.xgafv'?: string;
113451
+ /** OAuth access token. */
113452
+ access_token?: string;
113453
+ /** Data format for response. */
113454
+ alt?: string;
113455
+ /** JSONP */
113456
+ callback?: string;
113457
+ /**
113458
+ * The etag of the Rollout.
113459
+ * If this is provided, the request will only succeed if the etag matches
113460
+ * the current etag of the Rollout.
113461
+ */
113462
+ etag?: string;
113463
+ /** Selector specifying which fields to include in a partial response. */
113464
+ fields?: string;
113465
+ /** 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. */
113466
+ key?: string;
113467
+ /** OAuth 2.0 token for the current user. */
113468
+ oauth_token?: string;
113469
+ /** Returns response with indentations and line breaks. */
113470
+ prettyPrint?: boolean;
113471
+ /** Required. Project ID for this request. */
113472
+ project: string;
113473
+ /** 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. */
113474
+ quotaUser?: string;
113475
+ /**
113476
+ * An optional request ID to identify requests. Specify a unique request ID so
113477
+ * that if you must retry your request, the server will know to ignore the
113478
+ * request if it has already been completed.
113479
+ *
113480
+ * For example, consider a situation where you make an initial request and
113481
+ * the request times out. If you make the request again with the same
113482
+ * request ID, the server can check if original operation with the same
113483
+ * request ID was received, and if so, will ignore the second request. This
113484
+ * prevents clients from accidentally creating duplicate commitments.
113485
+ *
113486
+ * The request ID must be
113487
+ * a valid UUID with the exception that zero UUID is not supported
113488
+ * (00000000-0000-0000-0000-000000000000).
113489
+ */
113490
+ requestId?: string;
113491
+ /** Required. Name of the Rollout resource to resume. */
113492
+ rollout: string;
113493
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
113494
+ upload_protocol?: string;
113495
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
113496
+ uploadType?: string;
113497
+ /** Legacy name for parameter that has been superseded by `quotaUser`. */
113498
+ userIp?: string;
113499
+ }): Request<Operation>;
111701
113500
  }
111702
113501
  interface RoutersResource {
111703
113502
  /**
@@ -116101,10 +117900,123 @@ declare namespace gapi.client {
116101
117900
  /** Legacy name for parameter that has been superseded by `quotaUser`. */
116102
117901
  userIp?: string;
116103
117902
  },
116104
- body: GlobalSetPolicyRequest,
116105
- ): Request<Policy>;
116106
- /** Returns permissions that a caller has on the specified resource. */
116107
- testIamPermissions(
117903
+ body: GlobalSetPolicyRequest,
117904
+ ): Request<Policy>;
117905
+ /** Returns permissions that a caller has on the specified resource. */
117906
+ testIamPermissions(
117907
+ request: {
117908
+ /** V1 error format. */
117909
+ '$.xgafv'?: string;
117910
+ /** OAuth access token. */
117911
+ access_token?: string;
117912
+ /** Data format for response. */
117913
+ alt?: string;
117914
+ /** JSONP */
117915
+ callback?: string;
117916
+ /** Selector specifying which fields to include in a partial response. */
117917
+ fields?: string;
117918
+ /** 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. */
117919
+ key?: string;
117920
+ /** OAuth 2.0 token for the current user. */
117921
+ oauth_token?: string;
117922
+ /** Returns response with indentations and line breaks. */
117923
+ prettyPrint?: boolean;
117924
+ /** Project ID for this request. */
117925
+ project: string;
117926
+ /** 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. */
117927
+ quotaUser?: string;
117928
+ /** Name or id of the resource for this request. */
117929
+ resource: string;
117930
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
117931
+ upload_protocol?: string;
117932
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
117933
+ uploadType?: string;
117934
+ /** Legacy name for parameter that has been superseded by `quotaUser`. */
117935
+ userIp?: string;
117936
+ },
117937
+ body: TestPermissionsRequest,
117938
+ ): Request<TestPermissionsResponse>;
117939
+ }
117940
+ interface SnapshotRecycleBinPolicyResource {
117941
+ /** Returns the specified SnapshotRecycleBinPolicy. */
117942
+ get(request?: {
117943
+ /** V1 error format. */
117944
+ '$.xgafv'?: string;
117945
+ /** OAuth access token. */
117946
+ access_token?: string;
117947
+ /** Data format for response. */
117948
+ alt?: string;
117949
+ /** JSONP */
117950
+ callback?: string;
117951
+ /** Selector specifying which fields to include in a partial response. */
117952
+ fields?: string;
117953
+ /** 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. */
117954
+ key?: string;
117955
+ /** OAuth 2.0 token for the current user. */
117956
+ oauth_token?: string;
117957
+ /** Returns response with indentations and line breaks. */
117958
+ prettyPrint?: boolean;
117959
+ /** Project ID for this request. */
117960
+ project: string;
117961
+ /** 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. */
117962
+ quotaUser?: string;
117963
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
117964
+ upload_protocol?: string;
117965
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
117966
+ uploadType?: string;
117967
+ /** Legacy name for parameter that has been superseded by `quotaUser`. */
117968
+ userIp?: string;
117969
+ }): Request<SnapshotRecycleBinPolicy>;
117970
+ /** Patches the SnapshotRecycleBinPolicy. */
117971
+ patch(request: {
117972
+ /** V1 error format. */
117973
+ '$.xgafv'?: string;
117974
+ /** OAuth access token. */
117975
+ access_token?: string;
117976
+ /** Data format for response. */
117977
+ alt?: string;
117978
+ /** JSONP */
117979
+ callback?: string;
117980
+ /** Selector specifying which fields to include in a partial response. */
117981
+ fields?: string;
117982
+ /** 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. */
117983
+ key?: string;
117984
+ /** OAuth 2.0 token for the current user. */
117985
+ oauth_token?: string;
117986
+ /** Returns response with indentations and line breaks. */
117987
+ prettyPrint?: boolean;
117988
+ /** Project ID for this request. */
117989
+ project: string;
117990
+ /** 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. */
117991
+ quotaUser?: string;
117992
+ /**
117993
+ * An optional request ID to identify requests. Specify a unique request ID so
117994
+ * that if you must retry your request, the server will know to ignore the
117995
+ * request if it has already been completed.
117996
+ *
117997
+ * For example, consider a situation where you make an initial request and
117998
+ * the request times out. If you make the request again with the same
117999
+ * request ID, the server can check if original operation with the same
118000
+ * request ID was received, and if so, will ignore the second request. This
118001
+ * prevents clients from accidentally creating duplicate commitments.
118002
+ *
118003
+ * The request ID must be
118004
+ * a valid UUID with the exception that zero UUID is not supported
118005
+ * (00000000-0000-0000-0000-000000000000).
118006
+ */
118007
+ requestId?: string;
118008
+ /** update_mask indicates fields to be updated as part of this request. */
118009
+ updateMask?: string;
118010
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
118011
+ upload_protocol?: string;
118012
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
118013
+ uploadType?: string;
118014
+ /** Legacy name for parameter that has been superseded by `quotaUser`. */
118015
+ userIp?: string;
118016
+ /** Request body */
118017
+ resource: SnapshotRecycleBinPolicy;
118018
+ }): Request<Operation>;
118019
+ patch(
116108
118020
  request: {
116109
118021
  /** V1 error format. */
116110
118022
  '$.xgafv'?: string;
@@ -116126,8 +118038,24 @@ declare namespace gapi.client {
116126
118038
  project: string;
116127
118039
  /** 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. */
116128
118040
  quotaUser?: string;
116129
- /** Name or id of the resource for this request. */
116130
- resource: string;
118041
+ /**
118042
+ * An optional request ID to identify requests. Specify a unique request ID so
118043
+ * that if you must retry your request, the server will know to ignore the
118044
+ * request if it has already been completed.
118045
+ *
118046
+ * For example, consider a situation where you make an initial request and
118047
+ * the request times out. If you make the request again with the same
118048
+ * request ID, the server can check if original operation with the same
118049
+ * request ID was received, and if so, will ignore the second request. This
118050
+ * prevents clients from accidentally creating duplicate commitments.
118051
+ *
118052
+ * The request ID must be
118053
+ * a valid UUID with the exception that zero UUID is not supported
118054
+ * (00000000-0000-0000-0000-000000000000).
118055
+ */
118056
+ requestId?: string;
118057
+ /** update_mask indicates fields to be updated as part of this request. */
118058
+ updateMask?: string;
116131
118059
  /** Upload protocol for media (e.g. "raw", "multipart"). */
116132
118060
  upload_protocol?: string;
116133
118061
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -116135,8 +118063,8 @@ declare namespace gapi.client {
116135
118063
  /** Legacy name for parameter that has been superseded by `quotaUser`. */
116136
118064
  userIp?: string;
116137
118065
  },
116138
- body: TestPermissionsRequest,
116139
- ): Request<TestPermissionsResponse>;
118066
+ body: SnapshotRecycleBinPolicy,
118067
+ ): Request<Operation>;
116140
118068
  }
116141
118069
  interface SnapshotsResource {
116142
118070
  /**
@@ -116374,6 +118302,41 @@ declare namespace gapi.client {
116374
118302
  /** Legacy name for parameter that has been superseded by `quotaUser`. */
116375
118303
  userIp?: string;
116376
118304
  }): Request<Snapshot>;
118305
+ /**
118306
+ * Returns the effective recycle bin rule for a snapshot by merging org and
118307
+ * project level rules. If no rules are defined at org and project level, the
118308
+ * standard default rule is returned.
118309
+ */
118310
+ getEffectiveRecycleBinRule(request?: {
118311
+ /** V1 error format. */
118312
+ '$.xgafv'?: string;
118313
+ /** OAuth access token. */
118314
+ access_token?: string;
118315
+ /** Data format for response. */
118316
+ alt?: string;
118317
+ /** JSONP */
118318
+ callback?: string;
118319
+ /** Selector specifying which fields to include in a partial response. */
118320
+ fields?: string;
118321
+ /** 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. */
118322
+ key?: string;
118323
+ /** OAuth 2.0 token for the current user. */
118324
+ oauth_token?: string;
118325
+ /** Returns response with indentations and line breaks. */
118326
+ prettyPrint?: boolean;
118327
+ /** Project ID for this request. */
118328
+ project: string;
118329
+ /** 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. */
118330
+ quotaUser?: string;
118331
+ /** Name of the Snapshot resource to get the effective recycle bin rule for. */
118332
+ snapshot: string;
118333
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
118334
+ upload_protocol?: string;
118335
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
118336
+ uploadType?: string;
118337
+ /** Legacy name for parameter that has been superseded by `quotaUser`. */
118338
+ userIp?: string;
118339
+ }): Request<SnapshotsGetEffectiveRecycleBinRuleResponse>;
116377
118340
  /**
116378
118341
  * Gets the access control policy for a resource. May be empty if no such
116379
118342
  * policy or resource exists.
@@ -130379,6 +132342,38 @@ declare namespace gapi.client {
130379
132342
  /** Name of the zone for this request. */
130380
132343
  zone: string;
130381
132344
  }): Request<VmExtensionPolicy>;
132345
+ /** Retrieves details of a specific VM extension. */
132346
+ getVmExtension(request?: {
132347
+ /** V1 error format. */
132348
+ '$.xgafv'?: string;
132349
+ /** OAuth access token. */
132350
+ access_token?: string;
132351
+ /** Data format for response. */
132352
+ alt?: string;
132353
+ /** JSONP */
132354
+ callback?: string;
132355
+ extensionName: string;
132356
+ /** Selector specifying which fields to include in a partial response. */
132357
+ fields?: string;
132358
+ /** 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. */
132359
+ key?: string;
132360
+ /** OAuth 2.0 token for the current user. */
132361
+ oauth_token?: string;
132362
+ /** Returns response with indentations and line breaks. */
132363
+ prettyPrint?: boolean;
132364
+ /** Project ID for this request. */
132365
+ project: string;
132366
+ /** 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. */
132367
+ quotaUser?: string;
132368
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
132369
+ upload_protocol?: string;
132370
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
132371
+ uploadType?: string;
132372
+ /** Legacy name for parameter that has been superseded by `quotaUser`. */
132373
+ userIp?: string;
132374
+ /** Name of the zone for this request. */
132375
+ zone: string;
132376
+ }): Request<VmExtension>;
130382
132377
  /** Creates a new zone-level VM extension policy within a project. */
130383
132378
  insert(request: {
130384
132379
  /** V1 error format. */
@@ -130606,6 +132601,138 @@ declare namespace gapi.client {
130606
132601
  /** Name of the zone for this request. */
130607
132602
  zone: string;
130608
132603
  }): Request<VmExtensionPolicyList>;
132604
+ /**
132605
+ * Lists all VM extensions within a specific zone for a project.
132606
+ * This is a read-only API.
132607
+ */
132608
+ listVmExtensions(request?: {
132609
+ /** V1 error format. */
132610
+ '$.xgafv'?: string;
132611
+ /** OAuth access token. */
132612
+ access_token?: string;
132613
+ /** Data format for response. */
132614
+ alt?: string;
132615
+ /** JSONP */
132616
+ callback?: string;
132617
+ /** Selector specifying which fields to include in a partial response. */
132618
+ fields?: string;
132619
+ /**
132620
+ * A filter expression that filters resources listed in the response. Most
132621
+ * Compute resources support two types of filter expressions:
132622
+ * expressions that support regular expressions and expressions that follow
132623
+ * API improvement proposal AIP-160.
132624
+ * These two types of filter expressions cannot be mixed in one request.
132625
+ *
132626
+ * If you want to use AIP-160, your expression must specify the field name, an
132627
+ * operator, and the value that you want to use for filtering. The value
132628
+ * must be a string, a number, or a boolean. The operator
132629
+ * must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`.
132630
+ *
132631
+ * For example, if you are filtering Compute Engine instances, you can
132632
+ * exclude instances named `example-instance` by specifying
132633
+ * `name != example-instance`.
132634
+ *
132635
+ * The `:*` comparison can be used to test whether a key has been defined.
132636
+ * For example, to find all objects with `owner` label use:
132637
+ * ```
132638
+ * labels.owner:*
132639
+ * ```
132640
+ *
132641
+ * You can also filter nested fields. For example, you could specify
132642
+ * `scheduling.automaticRestart = false` to include instances only
132643
+ * if they are not scheduled for automatic restarts. You can use filtering
132644
+ * on nested fields to filter based onresource labels.
132645
+ *
132646
+ * To filter on multiple expressions, provide each separate expression within
132647
+ * parentheses. For example:
132648
+ * ```
132649
+ * (scheduling.automaticRestart = true)
132650
+ * (cpuPlatform = "Intel Skylake")
132651
+ * ```
132652
+ * By default, each expression is an `AND` expression. However, you
132653
+ * can include `AND` and `OR` expressions explicitly.
132654
+ * For example:
132655
+ * ```
132656
+ * (cpuPlatform = "Intel Skylake") OR
132657
+ * (cpuPlatform = "Intel Broadwell") AND
132658
+ * (scheduling.automaticRestart = true)
132659
+ * ```
132660
+ *
132661
+ * If you want to use a regular expression, use the `eq` (equal) or `ne`
132662
+ * (not equal) operator against a single un-parenthesized expression with or
132663
+ * without quotes or against multiple parenthesized expressions. Examples:
132664
+ *
132665
+ * `fieldname eq unquoted literal`
132666
+ * `fieldname eq 'single quoted literal'`
132667
+ * `fieldname eq "double quoted literal"`
132668
+ * `(fieldname1 eq literal) (fieldname2 ne "literal")`
132669
+ *
132670
+ * The literal value is interpreted as a regular expression using GoogleRE2 library syntax.
132671
+ * The literal value must match the entire field.
132672
+ *
132673
+ * For example, to filter for instances that do not end with name "instance",
132674
+ * you would use `name ne .*instance`.
132675
+ *
132676
+ * You cannot combine constraints on multiple fields using regular
132677
+ * expressions.
132678
+ */
132679
+ filter?: string;
132680
+ /** 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. */
132681
+ key?: string;
132682
+ /**
132683
+ * The maximum number of results per page that should be returned.
132684
+ * If the number of available results is larger than `maxResults`,
132685
+ * Compute Engine returns a `nextPageToken` that can be used to get
132686
+ * the next page of results in subsequent list requests. Acceptable values are
132687
+ * `0` to `500`, inclusive. (Default: `500`)
132688
+ */
132689
+ maxResults?: number;
132690
+ /** OAuth 2.0 token for the current user. */
132691
+ oauth_token?: string;
132692
+ /**
132693
+ * Sorts list results by a certain order. By default, results
132694
+ * are returned in alphanumerical order based on the resource name.
132695
+ *
132696
+ * You can also sort results in descending order based on the creation
132697
+ * timestamp using `orderBy="creationTimestamp desc"`. This sorts
132698
+ * results based on the `creationTimestamp` field in
132699
+ * reverse chronological order (newest result first). Use this to sort
132700
+ * resources like operations so that the newest operation is returned first.
132701
+ *
132702
+ * Currently, only sorting by `name` or
132703
+ * `creationTimestamp desc` is supported.
132704
+ */
132705
+ orderBy?: string;
132706
+ /**
132707
+ * Specifies a page token to use. Set `pageToken` to the
132708
+ * `nextPageToken` returned by a previous list request to get
132709
+ * the next page of results.
132710
+ */
132711
+ pageToken?: string;
132712
+ /** Returns response with indentations and line breaks. */
132713
+ prettyPrint?: boolean;
132714
+ /** Required. Project ID for this request. */
132715
+ project: string;
132716
+ /** 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. */
132717
+ quotaUser?: string;
132718
+ /**
132719
+ * Opt-in for partial success behavior which provides partial results in case
132720
+ * of failure. The default value is false.
132721
+ *
132722
+ * For example, when partial success behavior is enabled, aggregatedList for a
132723
+ * single zone scope either returns all resources in the zone or no resources,
132724
+ * with an error code.
132725
+ */
132726
+ returnPartialSuccess?: boolean;
132727
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
132728
+ upload_protocol?: string;
132729
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
132730
+ uploadType?: string;
132731
+ /** Legacy name for parameter that has been superseded by `quotaUser`. */
132732
+ userIp?: string;
132733
+ /** Name of the zone for this request. */
132734
+ zone: string;
132735
+ }): Request<ListVmExtensionsResponse>;
130609
132736
  /** Modifies an existing zone VM extension policy. */
130610
132737
  update(request: {
130611
132738
  /** V1 error format. */
@@ -130824,6 +132951,8 @@ declare namespace gapi.client {
130824
132951
 
130825
132952
  const organizationSecurityPolicies: OrganizationSecurityPoliciesResource;
130826
132953
 
132954
+ const organizationSnapshotRecycleBinPolicy: OrganizationSnapshotRecycleBinPolicyResource;
132955
+
130827
132956
  const packetMirrorings: PacketMirroringsResource;
130828
132957
 
130829
132958
  const previewFeatures: PreviewFeaturesResource;
@@ -130938,6 +133067,8 @@ declare namespace gapi.client {
130938
133067
 
130939
133068
  const snapshotGroups: SnapshotGroupsResource;
130940
133069
 
133070
+ const snapshotRecycleBinPolicy: SnapshotRecycleBinPolicyResource;
133071
+
130941
133072
  const snapshotSettings: SnapshotSettingsResource;
130942
133073
 
130943
133074
  const snapshots: SnapshotsResource;