@maxim_mazurok/gapi.client.compute-alpha 0.2.20260729 → 0.2.20260821
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +860 -67
- package/package.json +1 -1
- package/readme.md +39 -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:
|
|
12
|
+
// Revision: 20260821
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -642,6 +642,13 @@ declare namespace gapi.client {
|
|
|
642
642
|
| 'STANDARD_OVERRIDES_FIXED_STANDARD';
|
|
643
643
|
/** The prefix length if the resource represents an IP range. */
|
|
644
644
|
prefixLength?: number;
|
|
645
|
+
/**
|
|
646
|
+
* The public DNS PTR record to be configured for this external
|
|
647
|
+
* IP.
|
|
648
|
+
*/
|
|
649
|
+
ptrDomainName?: string;
|
|
650
|
+
/** The TTL in seconds for public DNS PTR record. */
|
|
651
|
+
ptrDomainNameTtl?: number;
|
|
645
652
|
/**
|
|
646
653
|
* The purpose of this resource, which can be one of the following values:
|
|
647
654
|
*
|
|
@@ -2150,6 +2157,44 @@ declare namespace gapi.client {
|
|
|
2150
2157
|
| 'OPTIMIZE_AVAILABILITY'
|
|
2151
2158
|
| 'PREDICTIVE_METHOD_UNSPECIFIED'
|
|
2152
2159
|
| 'STANDARD';
|
|
2160
|
+
/**
|
|
2161
|
+
* Defines how CPU utilization is aggregated in a group.
|
|
2162
|
+
*
|
|
2163
|
+
* Operates on the results from the `time_aggregation`, reducing the
|
|
2164
|
+
* per-instance values down to a single aggregate value across the entire
|
|
2165
|
+
* instance group if samples are available.
|
|
2166
|
+
*/
|
|
2167
|
+
signalAggregation?: AutoscalingPolicySignalAggregation;
|
|
2168
|
+
/**
|
|
2169
|
+
* Defines how CPU utilization is aggregated over time.
|
|
2170
|
+
*
|
|
2171
|
+
* Operates on all CPU utilization samples produced by each instance over
|
|
2172
|
+
* the `time_aggregation.time_window_sec`, reducing them to exactly one
|
|
2173
|
+
* value per instance if samples are available.
|
|
2174
|
+
*/
|
|
2175
|
+
timeAggregation?: AutoscalingPolicyTimeAggregation;
|
|
2176
|
+
/**
|
|
2177
|
+
* Defines a target range for CPU utilization. The values of
|
|
2178
|
+
* `min_utilization` and `max_utilization` must be in
|
|
2179
|
+
* the range (0.0, 1.0].
|
|
2180
|
+
*
|
|
2181
|
+
* If the average CPU is between `min_utilization` and
|
|
2182
|
+
* `max_utilization`, the autoscaler maintains the current size
|
|
2183
|
+
* unless another configured metric requires scaling out.
|
|
2184
|
+
*
|
|
2185
|
+
* If the average CPU is above `max_utilization`, the autoscaler
|
|
2186
|
+
* scales out until the average utilization reaches the
|
|
2187
|
+
* `utilization_range.utilization_target`.
|
|
2188
|
+
*
|
|
2189
|
+
* If the average CPU is below `min_utilization`, the autoscaler
|
|
2190
|
+
* considers scaling in until the average utilization reaches the
|
|
2191
|
+
* `utilization_range.utilization_target`. Scaling in can occur only if all
|
|
2192
|
+
* other configured scaling metrics also suggest scaling in.
|
|
2193
|
+
*
|
|
2194
|
+
* At most one of CpuUtilization.utilization_target or
|
|
2195
|
+
* CpuUtilization.utilization_range can be set.
|
|
2196
|
+
*/
|
|
2197
|
+
utilizationRange?: UtilizationRange;
|
|
2153
2198
|
/**
|
|
2154
2199
|
* The target CPU utilization that the autoscaler maintains. Must be
|
|
2155
2200
|
* a float value in the range (0, 1]. If not specified, the default is0.6.
|
|
@@ -2326,6 +2371,42 @@ declare namespace gapi.client {
|
|
|
2326
2371
|
*/
|
|
2327
2372
|
timeZone?: string;
|
|
2328
2373
|
}
|
|
2374
|
+
interface AutoscalingPolicySignalAggregation {
|
|
2375
|
+
/**
|
|
2376
|
+
* If statistic is PERCENTILE, percentile must be defined. This value is
|
|
2377
|
+
* used only when statistic is PERCENTILE.
|
|
2378
|
+
*/
|
|
2379
|
+
percentile?: number;
|
|
2380
|
+
/**
|
|
2381
|
+
* Required. The aggregator used to aggregate signal samples across the entire
|
|
2382
|
+
* instance group. This field is required.
|
|
2383
|
+
*/
|
|
2384
|
+
statistic?:
|
|
2385
|
+
'AGGREGATOR_UNSPECIFIED' | 'AVERAGE' | 'MAX' | 'MIN' | 'PERCENTILE';
|
|
2386
|
+
}
|
|
2387
|
+
interface AutoscalingPolicyTimeAggregation {
|
|
2388
|
+
/**
|
|
2389
|
+
* If statistic is PERCENTILE, percentile must be defined. This value is
|
|
2390
|
+
* used only when statistic is PERCENTILE.
|
|
2391
|
+
*/
|
|
2392
|
+
percentile?: number;
|
|
2393
|
+
/**
|
|
2394
|
+
* Required. The aggregator used to aggregate signal samples over the
|
|
2395
|
+
* `time_window_sec`. This field is required.
|
|
2396
|
+
*/
|
|
2397
|
+
statistic?:
|
|
2398
|
+
| 'AGGREGATOR_UNSPECIFIED'
|
|
2399
|
+
| 'AVERAGE'
|
|
2400
|
+
| 'LAST_VALUE'
|
|
2401
|
+
| 'MAX'
|
|
2402
|
+
| 'MIN'
|
|
2403
|
+
| 'PERCENTILE';
|
|
2404
|
+
/**
|
|
2405
|
+
* Required. The duration of the time window over which the signal samples are
|
|
2406
|
+
* aggregated. This field is required.
|
|
2407
|
+
*/
|
|
2408
|
+
timeWindowSec?: number;
|
|
2409
|
+
}
|
|
2329
2410
|
interface AWSV4Signature {
|
|
2330
2411
|
/**
|
|
2331
2412
|
* The access key used for s3 bucket authentication. Required for updating or
|
|
@@ -2356,7 +2437,8 @@ declare namespace gapi.client {
|
|
|
2356
2437
|
* handle additional traffic or is fully loaded. For usage guidelines, see
|
|
2357
2438
|
* Connection balancing mode.
|
|
2358
2439
|
*
|
|
2359
|
-
* Backends must use compatible balancing modes.
|
|
2440
|
+
* Backends must use compatible balancing modes. Backends of a backend
|
|
2441
|
+
* service may use different balancing modes. For more information, see
|
|
2360
2442
|
* Supported balancing modes and target capacity settings and
|
|
2361
2443
|
* Restrictions and guidance for instance groups.
|
|
2362
2444
|
*
|
|
@@ -2396,6 +2478,9 @@ declare namespace gapi.client {
|
|
|
2396
2478
|
/**
|
|
2397
2479
|
* This field designates whether this is a failover backend. More than one
|
|
2398
2480
|
* failover backend can be configured for a given BackendService.
|
|
2481
|
+
*
|
|
2482
|
+
* This field can only be used for a regional external Passthrough Network
|
|
2483
|
+
* Load Balancer or a regional internal Passthrough Network Load Balancer.
|
|
2399
2484
|
*/
|
|
2400
2485
|
failover?: boolean;
|
|
2401
2486
|
/**
|
|
@@ -2501,6 +2586,15 @@ declare namespace gapi.client {
|
|
|
2501
2586
|
* capacity, backends in this layer would be used and traffic would be
|
|
2502
2587
|
* assigned based on the load balancing algorithm you use. This is the
|
|
2503
2588
|
* default
|
|
2589
|
+
*
|
|
2590
|
+
*
|
|
2591
|
+
*
|
|
2592
|
+
* For global external Passthrough Network Load Balancers, the following
|
|
2593
|
+
* restrictions apply:
|
|
2594
|
+
*
|
|
2595
|
+
* - At most one backend can be marked as PREFERRED.
|
|
2596
|
+
* - PREFERRED and DEFAULT backends cannot reside
|
|
2597
|
+
* in the same Cloud region.
|
|
2504
2598
|
*/
|
|
2505
2599
|
preference?: 'DEFAULT' | 'PREFERENCE_UNSPECIFIED' | 'PREFERRED';
|
|
2506
2600
|
/**
|
|
@@ -2683,14 +2777,17 @@ declare namespace gapi.client {
|
|
|
2683
2777
|
cacheKeyPolicy?: BackendBucketCdnPolicyCacheKeyPolicy;
|
|
2684
2778
|
/**
|
|
2685
2779
|
* Specifies the cache setting for all responses from this backend.
|
|
2686
|
-
* The possible values are:
|
|
2780
|
+
* The possible values are:
|
|
2781
|
+
* USE_ORIGIN_HEADERS Requires the origin to set valid caching
|
|
2687
2782
|
* headers to cache content. Responses without these headers will not be
|
|
2688
2783
|
* cached at Google's edge, and will require a full trip to the origin on
|
|
2689
2784
|
* every request, potentially impacting performance and increasing load on
|
|
2690
|
-
* the origin server.
|
|
2785
|
+
* the origin server.
|
|
2786
|
+
* FORCE_CACHE_ALL Cache all content, ignoring any "private",
|
|
2691
2787
|
* "no-store" or "no-cache" directives in Cache-Control response headers.
|
|
2692
2788
|
* Warning: this may result in Cloud CDN caching private,
|
|
2693
|
-
* per-user (user identifiable) content.
|
|
2789
|
+
* per-user (user identifiable) content.
|
|
2790
|
+
* CACHE_ALL_STATIC Automatically cache static content,
|
|
2694
2791
|
* including common image formats, media (video and audio), and web assets
|
|
2695
2792
|
* (JavaScript and CSS). Requests and responses that are marked as
|
|
2696
2793
|
* uncacheable, as well as dynamic content (including HTML), will not be
|
|
@@ -3267,8 +3364,8 @@ declare namespace gapi.client {
|
|
|
3267
3364
|
* Balancers](https://cloud.google.com/load-balancing/docs/internal/failover-overview)
|
|
3268
3365
|
* and [external passthrough Network Load
|
|
3269
3366
|
* Balancers](https://cloud.google.com/load-balancing/docs/network/networklb-failover-overview).
|
|
3270
|
-
*
|
|
3271
|
-
*
|
|
3367
|
+
* failoverPolicy cannot be specified with haPolicy.failoverPolicy cannot be used by global external Passthrough
|
|
3368
|
+
* Network Load Balancers.
|
|
3272
3369
|
*/
|
|
3273
3370
|
failoverPolicy?: BackendServiceFailoverPolicy;
|
|
3274
3371
|
/**
|
|
@@ -3309,9 +3406,9 @@ declare namespace gapi.client {
|
|
|
3309
3406
|
* haPolicy requires customers to be responsible for tracking backend
|
|
3310
3407
|
* endpoint health and electing a leader among the healthy endpoints.
|
|
3311
3408
|
* Therefore, haPolicy cannot be specified with healthChecks.
|
|
3312
|
-
*
|
|
3313
|
-
* haPolicy
|
|
3314
|
-
*
|
|
3409
|
+
* haPolicy can only be specified for External Passthrough
|
|
3410
|
+
* Network Load Balancers and Internal Passthrough Network Load Balancers.haPolicy cannot be used by global external Passthrough Network
|
|
3411
|
+
* Load Balancers.
|
|
3315
3412
|
*/
|
|
3316
3413
|
haPolicy?: BackendServiceHAPolicy;
|
|
3317
3414
|
/**
|
|
@@ -3385,8 +3482,8 @@ declare namespace gapi.client {
|
|
|
3385
3482
|
/**
|
|
3386
3483
|
* Specifies the load balancer type. A backend service
|
|
3387
3484
|
* created for one type of load balancer cannot be used with another.
|
|
3388
|
-
* For more information, refer
|
|
3389
|
-
*
|
|
3485
|
+
* For more information, refer to
|
|
3486
|
+
* Backend services product and scheme table.
|
|
3390
3487
|
*/
|
|
3391
3488
|
loadBalancingScheme?:
|
|
3392
3489
|
| 'EXTERNAL'
|
|
@@ -3440,8 +3537,19 @@ declare namespace gapi.client {
|
|
|
3440
3537
|
* If set, the Backend Service responses are expected to contain non-standard
|
|
3441
3538
|
* HTTP response header field Endpoint-Load-Metrics. The reported
|
|
3442
3539
|
* metrics to use for computing the weights are specified via thecustomMetrics field.
|
|
3540
|
+
* - WEIGHTED_MAGLEV: Per-endpoint weighted load balancing via
|
|
3541
|
+
* health check reported weights. If set, the backend service must configure
|
|
3542
|
+
* an HTTP-based Health Check, and health check replies are expected to
|
|
3543
|
+
* contain the non-standard HTTP response header fieldX-Load-Balancing-Endpoint-Weight to specify the per-endpoint
|
|
3544
|
+
* weights. If set, load balancing is weighted based on the per-endpoint
|
|
3545
|
+
* weights reported in the last processed health check replies, as long as
|
|
3546
|
+
* every instance either reported a valid weight or had UNAVAILABLE_WEIGHT.
|
|
3547
|
+
* Otherwise, load balancing remains equal-weight.
|
|
3548
|
+
*
|
|
3549
|
+
*
|
|
3443
3550
|
*
|
|
3444
3551
|
* This field is applicable to either:
|
|
3552
|
+
*
|
|
3445
3553
|
* - A regional backend service with the service protocol set to HTTP,
|
|
3446
3554
|
* HTTPS, HTTP2 or H2C, and load_balancing_scheme set to
|
|
3447
3555
|
* INTERNAL_MANAGED.
|
|
@@ -3450,6 +3558,7 @@ declare namespace gapi.client {
|
|
|
3450
3558
|
* EXTERNAL_MANAGED.
|
|
3451
3559
|
*
|
|
3452
3560
|
*
|
|
3561
|
+
*
|
|
3453
3562
|
* If sessionAffinity is not configured—that is, if session
|
|
3454
3563
|
* affinity remains at the default value of NONE—then the
|
|
3455
3564
|
* default value for localityLbPolicy
|
|
@@ -3596,13 +3705,13 @@ declare namespace gapi.client {
|
|
|
3596
3705
|
*/
|
|
3597
3706
|
portName?: string;
|
|
3598
3707
|
/**
|
|
3599
|
-
* The protocol this BackendService uses to communicate
|
|
3600
|
-
* with backends.
|
|
3708
|
+
* The protocol this BackendService uses to communicate with backends.
|
|
3601
3709
|
*
|
|
3602
|
-
* Possible values are HTTP, HTTPS, HTTP2, H2C, TCP, SSL, UDP or
|
|
3603
|
-
* depending on the chosen load balancer or Traffic Director
|
|
3604
|
-
*
|
|
3605
|
-
*
|
|
3710
|
+
* Possible values are HTTP, HTTPS, HTTP2, H2C, TCP, SSL, UDP, GRPC, or
|
|
3711
|
+
* UNSPECIFIED, depending on the chosen load balancer or Traffic Director
|
|
3712
|
+
* configuration.
|
|
3713
|
+
* Refer to
|
|
3714
|
+
* Load balancing features for more information.
|
|
3606
3715
|
*
|
|
3607
3716
|
* Must be set to GRPC when the backend service is referenced by a URL map
|
|
3608
3717
|
* that is bound to target gRPC proxy.
|
|
@@ -3807,14 +3916,17 @@ declare namespace gapi.client {
|
|
|
3807
3916
|
cacheKeyPolicy?: CacheKeyPolicy;
|
|
3808
3917
|
/**
|
|
3809
3918
|
* Specifies the cache setting for all responses from this backend.
|
|
3810
|
-
* The possible values are:
|
|
3919
|
+
* The possible values are:
|
|
3920
|
+
* USE_ORIGIN_HEADERS Requires the origin to set valid caching
|
|
3811
3921
|
* headers to cache content. Responses without these headers will not be
|
|
3812
3922
|
* cached at Google's edge, and will require a full trip to the origin on
|
|
3813
3923
|
* every request, potentially impacting performance and increasing load on
|
|
3814
|
-
* the origin server.
|
|
3924
|
+
* the origin server.
|
|
3925
|
+
* FORCE_CACHE_ALL Cache all content, ignoring any "private",
|
|
3815
3926
|
* "no-store" or "no-cache" directives in Cache-Control response headers.
|
|
3816
3927
|
* Warning: this may result in Cloud CDN caching private,
|
|
3817
|
-
* per-user (user identifiable) content.
|
|
3928
|
+
* per-user (user identifiable) content.
|
|
3929
|
+
* CACHE_ALL_STATIC Automatically cache static content,
|
|
3818
3930
|
* including common image formats, media (video and audio), and web assets
|
|
3819
3931
|
* (JavaScript and CSS). Requests and responses that are marked as
|
|
3820
3932
|
* uncacheable, as well as dynamic content (including HTML), will not be
|
|
@@ -5631,10 +5743,7 @@ declare namespace gapi.client {
|
|
|
5631
5743
|
machineTypes?: string[];
|
|
5632
5744
|
}
|
|
5633
5745
|
interface CapacityAdviceRequestInstanceFlexibilityPolicyInstanceSelectionAttachedDisk {
|
|
5634
|
-
/**
|
|
5635
|
-
* Specifies the type of the disk.
|
|
5636
|
-
* This field must be set to SCRATCH.
|
|
5637
|
-
*/
|
|
5746
|
+
/** Specifies the type of the disk. */
|
|
5638
5747
|
type?: 'DISK_TYPE_UNSPECIFIED' | 'SCRATCH';
|
|
5639
5748
|
}
|
|
5640
5749
|
interface CapacityAdviceRequestInstanceProperties {
|
|
@@ -6082,6 +6191,7 @@ declare namespace gapi.client {
|
|
|
6082
6191
|
| 'NETWORK_OPTIMIZED_U4S'
|
|
6083
6192
|
| 'STORAGE_OPTIMIZED_Z3'
|
|
6084
6193
|
| 'STORAGE_OPTIMIZED_Z4D'
|
|
6194
|
+
| 'STORAGE_OPTIMIZED_Z4M'
|
|
6085
6195
|
| 'TYPE_UNSPECIFIED';
|
|
6086
6196
|
}
|
|
6087
6197
|
interface CommitmentAggregatedList {
|
|
@@ -6690,6 +6800,7 @@ declare namespace gapi.client {
|
|
|
6690
6800
|
interface ConfidentialInstanceConfig {
|
|
6691
6801
|
/** Defines the type of technology used by the confidential instance. */
|
|
6692
6802
|
confidentialInstanceType?:
|
|
6803
|
+
| 'BMSAI'
|
|
6693
6804
|
| 'CCA'
|
|
6694
6805
|
| 'CONFIDENTIAL_INSTANCE_TYPE_UNSPECIFIED'
|
|
6695
6806
|
| 'SEV'
|
|
@@ -9496,6 +9607,13 @@ declare namespace gapi.client {
|
|
|
9496
9607
|
};
|
|
9497
9608
|
}
|
|
9498
9609
|
interface FirewallPolicy {
|
|
9610
|
+
/**
|
|
9611
|
+
* Optional. If specified, it defines what should happen in case of backend issues for
|
|
9612
|
+
* rules with apply_security_profile_group action.
|
|
9613
|
+
* Allowed values: ALLOW, DENY. If not specified, the default behavior is
|
|
9614
|
+
* ALLOW.
|
|
9615
|
+
*/
|
|
9616
|
+
applySecurityProfileFallbackAction?: string;
|
|
9499
9617
|
/** A list of associations that belong to this firewall policy. */
|
|
9500
9618
|
associations?: FirewallPolicyAssociation[];
|
|
9501
9619
|
/**
|
|
@@ -10240,10 +10358,31 @@ declare namespace gapi.client {
|
|
|
10240
10358
|
/** Output only. [Output Only]. The extensions that are attached to this ForwardingRule. */
|
|
10241
10359
|
attachedExtensions?: ForwardingRuleAttachedExtension[];
|
|
10242
10360
|
/**
|
|
10243
|
-
* [Output Only] Specifies the availability group of the
|
|
10361
|
+
* Output only. [Output Only] Specifies the load balancing availability group, one of the
|
|
10362
|
+
* two that collectively provide high availability.
|
|
10363
|
+
*
|
|
10364
|
+
* Specifies the availability group of the forwarding rule. This
|
|
10244
10365
|
* field is for use by global external passthrough load balancers (load
|
|
10245
|
-
* balancing scheme EXTERNAL_PASSTHROUGH) and is set for the
|
|
10246
|
-
* rules only.
|
|
10366
|
+
* balancing scheme EXTERNAL_PASSTHROUGH) and is set for the
|
|
10367
|
+
* child forwarding rules only. The possible values are:
|
|
10368
|
+
*
|
|
10369
|
+
* - AVAILABILITY_GROUP0: Set for the child forwarding rule
|
|
10370
|
+
* that is programmed on the AVAILABILITY_GROUP0 load balancing
|
|
10371
|
+
* stack. The child forwarding rule has the same IP protocol, port, and
|
|
10372
|
+
* backend service settings as the parent forwarding rule, but has only one of
|
|
10373
|
+
* the two IP addresses of the parent forwarding rule, the one with the
|
|
10374
|
+
* purpose PASSTHROUGH_LOAD_BALANCER_AVAILABILITY_GROUP0.
|
|
10375
|
+
* - AVAILABILITY_GROUP1: Set for the child forwarding rule
|
|
10376
|
+
* that is programmed on the AVAILABILITY_GROUP1 load balancing
|
|
10377
|
+
* stack. The child forwarding rule has the same IP protocol, port and backend
|
|
10378
|
+
* service settings as the parent forwarding rule, but has only one of the two
|
|
10379
|
+
* IP addresses of the parent forwarding rule, the one with the purposePASSTHROUGH_LOAD_BALANCER_AVAILABILITY_GROUP1.
|
|
10380
|
+
*
|
|
10381
|
+
*
|
|
10382
|
+
*
|
|
10383
|
+
* For each global external Passthrough Network Load Balancer forwarding rule
|
|
10384
|
+
* (a parent forwarding rule) that you create, Google Cloud generates two
|
|
10385
|
+
* output-only child forwarding rules, one forAVAILABILITY_GROUP0 and one forAVAILABILITY_GROUP1.
|
|
10247
10386
|
*/
|
|
10248
10387
|
availabilityGroup?:
|
|
10249
10388
|
| 'AVAILABILITY_GROUP0'
|
|
@@ -10251,8 +10390,18 @@ declare namespace gapi.client {
|
|
|
10251
10390
|
| 'AVAILABILITY_GROUP_UNSPECIFIED';
|
|
10252
10391
|
/**
|
|
10253
10392
|
* Identifies the backend service to which the forwarding rule sends traffic.
|
|
10254
|
-
*
|
|
10255
|
-
*
|
|
10393
|
+
*
|
|
10394
|
+
* It is a required field for the following load balancers:
|
|
10395
|
+
*
|
|
10396
|
+
* - Internal passthrough Network Load Balancers
|
|
10397
|
+
* - Backend service-based regional external passthrough Network Load
|
|
10398
|
+
* Balancers
|
|
10399
|
+
* - Global external passthrough Network Load Balancers
|
|
10400
|
+
*
|
|
10401
|
+
*
|
|
10402
|
+
*
|
|
10403
|
+
* It cannot be set by other load balancer types and protocol forwarding
|
|
10404
|
+
* rules.
|
|
10256
10405
|
*/
|
|
10257
10406
|
backendService?: string;
|
|
10258
10407
|
/**
|
|
@@ -10265,11 +10414,14 @@ declare namespace gapi.client {
|
|
|
10265
10414
|
*/
|
|
10266
10415
|
baseForwardingRule?: string;
|
|
10267
10416
|
/**
|
|
10268
|
-
* Output only. [Output Only]
|
|
10417
|
+
* Output only. [Output Only] The resource URLs for the child forwarding rules.
|
|
10418
|
+
*
|
|
10419
|
+
* Applicable only to the parent forwarding rule of global
|
|
10269
10420
|
* external passthrough load balancers. This field contains the list of child
|
|
10270
10421
|
* forwarding rule URLs associated with the parent forwarding rule: one for
|
|
10271
10422
|
* each availability group. AVAILABILITY_GROUP0 will be the first element, and
|
|
10272
|
-
* AVAILABILITY_GROUP1 will be the second element.
|
|
10423
|
+
* AVAILABILITY_GROUP1 will be the second element. Refer to theavailabilityGroup field for further details. It cannot be set
|
|
10424
|
+
* by any other forwarding rules.
|
|
10273
10425
|
*/
|
|
10274
10426
|
childForwardingRules?: string[];
|
|
10275
10427
|
/**
|
|
@@ -10361,6 +10513,8 @@ declare namespace gapi.client {
|
|
|
10361
10513
|
*
|
|
10362
10514
|
*
|
|
10363
10515
|
*
|
|
10516
|
+
* The IP address can only be set at creation. Once set, it cannot be updated.
|
|
10517
|
+
*
|
|
10364
10518
|
* The forwarding rule's target or backendService,
|
|
10365
10519
|
* and in most cases, also the loadBalancingScheme, determine the
|
|
10366
10520
|
* type of IP address that you can use. For detailed information, see
|
|
@@ -10369,8 +10523,69 @@ declare namespace gapi.client {
|
|
|
10369
10523
|
*
|
|
10370
10524
|
* When reading an IPAddress, the API always returns the IP
|
|
10371
10525
|
* address number.
|
|
10526
|
+
*
|
|
10527
|
+
* When creating a global external Passthrough Network Load Balancer
|
|
10528
|
+
* forwarding rule (a parent forwarding rule), you must use theIPAddresses field, but the Google Cloud generated child
|
|
10529
|
+
* forwarding rules set the IPAddress field instead. Refer to theavailabilityGroup field for further details.
|
|
10372
10530
|
*/
|
|
10373
10531
|
IPAddress?: string;
|
|
10532
|
+
/**
|
|
10533
|
+
* IP addresses for which this forwarding rule accepts traffic. All IP
|
|
10534
|
+
* addresses must have the same IP version, IPv4 or IPv6. When a client sends
|
|
10535
|
+
* traffic that matches one of the specified IP addresses, protocol and ports,
|
|
10536
|
+
* the forwarding rule directs the traffic to the referencedbackendService. All IP addresses are served by the same set of
|
|
10537
|
+
* backends, and they share the target capacities specified in the backend
|
|
10538
|
+
* service fairly.
|
|
10539
|
+
*
|
|
10540
|
+
* Global external Passthrough Network Load Balancer requires two IP addresses
|
|
10541
|
+
* for each forwarding rule to provide high availability when both IP
|
|
10542
|
+
* addresses are used to serve client requests. The two IP addresses must come
|
|
10543
|
+
* from global IP pools that belong to two distinct Availability
|
|
10544
|
+
* Groups, represented by the purposePASSTHROUGH_LOAD_BALANCER_AVAILABILITY_GROUP0 andPASSTHROUGH_LOAD_BALANCER_AVAILABILITY_GROUP1. TheIPAddresses field specifies zero, one, or two IP addresses:
|
|
10545
|
+
*
|
|
10546
|
+
* - If omitted, Google Cloud assigns two ephemeral IP addresses, one from
|
|
10547
|
+
* each Availability Group.
|
|
10548
|
+
* - If you specify one IP address that references an existing static IP
|
|
10549
|
+
* address resource from one Availability Group, Google Cloud assigns an
|
|
10550
|
+
* ephemeral IP address from the other Availability Group.
|
|
10551
|
+
* - If you specify two IP addresses that reference existing static IP
|
|
10552
|
+
* address resources, they are required to be from different Availability
|
|
10553
|
+
* Groups.
|
|
10554
|
+
*
|
|
10555
|
+
*
|
|
10556
|
+
*
|
|
10557
|
+
* For global external Passthrough Network Load Balancer, each IP address can be one of the following:
|
|
10558
|
+
*
|
|
10559
|
+
* - A static or ephemeral IPv4 address from a Google-owned IP pool.
|
|
10560
|
+
* - A static IPv4 address from a global public delegated prefix.
|
|
10561
|
+
* - A static or ephemeral IPv6 /96 prefix from a Google-owned IP pool.
|
|
10562
|
+
*
|
|
10563
|
+
*
|
|
10564
|
+
*
|
|
10565
|
+
* For global external Passthrough Network Load Balancer, the two IP addresses
|
|
10566
|
+
* can be of different types. One IP address can be from a BYOIP prefix while
|
|
10567
|
+
* the other is from a Google-owned IP pool. One IP address can be static
|
|
10568
|
+
* while the other is ephemeral. However, both IP addresses must have the same
|
|
10569
|
+
* IP version, IPv4 or IPv6.
|
|
10570
|
+
*
|
|
10571
|
+
* The IP addresses can only be set at creation and cannot be updated.
|
|
10572
|
+
*
|
|
10573
|
+
* When creating a global external Passthrough Network Load Balancer
|
|
10574
|
+
* forwarding rule (a parent forwarding rule), you must use theIPAddresses field, but the Google Cloud-generated child
|
|
10575
|
+
* forwarding rules set the IPAddress field instead. Refer to theavailabilityGroup field for further details.
|
|
10576
|
+
*
|
|
10577
|
+
* Refer to the IPAddress field for the formats that can be used
|
|
10578
|
+
* to specify IP addresses while creating a forwarding rule.
|
|
10579
|
+
*
|
|
10580
|
+
* Because Passthrough Network Load Balancers do not terminate or translate
|
|
10581
|
+
* traffic, the backend stack types must be compatible with the forwarding
|
|
10582
|
+
* rule IP version:
|
|
10583
|
+
*
|
|
10584
|
+
* - If the forwarding rule IP version is IPv4, backends should be
|
|
10585
|
+
* configured as dual-stack or IPv4-only.
|
|
10586
|
+
* - If the forwarding rule IP version is IPv6, backends should be
|
|
10587
|
+
* configured as dual-stack or IPv6-only.
|
|
10588
|
+
*/
|
|
10374
10589
|
IPAddresses?: string[];
|
|
10375
10590
|
/**
|
|
10376
10591
|
* Resource reference of a PublicDelegatedPrefix. The PDP must
|
|
@@ -10431,8 +10646,8 @@ declare namespace gapi.client {
|
|
|
10431
10646
|
/**
|
|
10432
10647
|
* Specifies the forwarding rule type.
|
|
10433
10648
|
*
|
|
10434
|
-
* For more information
|
|
10435
|
-
* Forwarding rule
|
|
10649
|
+
* For more information, refer to
|
|
10650
|
+
* Forwarding rule product and scheme table.
|
|
10436
10651
|
*/
|
|
10437
10652
|
loadBalancingScheme?:
|
|
10438
10653
|
| 'EXTERNAL'
|
|
@@ -10477,6 +10692,13 @@ declare namespace gapi.client {
|
|
|
10477
10692
|
* For Private Service Connect forwarding rules that forward traffic to Google
|
|
10478
10693
|
* APIs, the forwarding rule name must be a 1-20 characters string with
|
|
10479
10694
|
* lowercase letters and numbers and must start with a letter.
|
|
10695
|
+
*
|
|
10696
|
+
* For global external Passthrough Network Load Balancer forwarding rules, the
|
|
10697
|
+
* forwarding rule name must be 1-43 characters long. For each global external
|
|
10698
|
+
* Passthrough Network Load Balancer forwarding rule (a parent forwarding
|
|
10699
|
+
* rule) that you create, Google Cloud generates two output-only child
|
|
10700
|
+
* forwarding rules that are named by concatenating the parent forwarding rule
|
|
10701
|
+
* name with the `-ag0` and `-ag1` suffixes, respectively. Refer to theavailabilityGroup field for further details.
|
|
10480
10702
|
*/
|
|
10481
10703
|
name?: string;
|
|
10482
10704
|
/**
|
|
@@ -10516,7 +10738,9 @@ declare namespace gapi.client {
|
|
|
10516
10738
|
*/
|
|
10517
10739
|
noAutomateDnsZone?: boolean;
|
|
10518
10740
|
/**
|
|
10519
|
-
* Output only. [Output Only]
|
|
10741
|
+
* Output only. [Output Only] The resource URL for the parent forwarding rule.
|
|
10742
|
+
*
|
|
10743
|
+
* Applicable only to the child forwarding rules of global external
|
|
10520
10744
|
* passthrough load balancers. This field contains the URL of the parent
|
|
10521
10745
|
* forwarding rule.
|
|
10522
10746
|
*/
|
|
@@ -10541,7 +10765,8 @@ declare namespace gapi.client {
|
|
|
10541
10765
|
*
|
|
10542
10766
|
*
|
|
10543
10767
|
* For external forwarding rules, two or more forwarding rules cannot use the
|
|
10544
|
-
* same [IPAddress, IPProtocol] pair
|
|
10768
|
+
* same [IPAddress, IPProtocol] pair (specified inIPAddress, IPAddresses, IPProtocol
|
|
10769
|
+
* fields) if they have overlapping portRanges.
|
|
10545
10770
|
*
|
|
10546
10771
|
* For internal forwarding rules within the same VPC network, two or more
|
|
10547
10772
|
* forwarding rules cannot use the same [IPAddress, IPProtocol]
|
|
@@ -10569,8 +10794,8 @@ declare namespace gapi.client {
|
|
|
10569
10794
|
*
|
|
10570
10795
|
*
|
|
10571
10796
|
* For external forwarding rules, two or more forwarding rules cannot use the
|
|
10572
|
-
* same [IPAddress, IPProtocol] pair
|
|
10573
|
-
* port number.
|
|
10797
|
+
* same [IPAddress, IPProtocol] pair (specified inIPAddress, IPAddresses, IPProtocol
|
|
10798
|
+
* fields) if they share at least one port number.
|
|
10574
10799
|
*
|
|
10575
10800
|
* For internal forwarding rules within the same VPC network, two or more
|
|
10576
10801
|
* forwarding rules cannot use the same [IPAddress, IPProtocol]
|
|
@@ -10664,6 +10889,15 @@ declare namespace gapi.client {
|
|
|
10664
10889
|
*
|
|
10665
10890
|
*
|
|
10666
10891
|
* - For Private Service Connect forwarding rules that forward traffic to managed services, the target must be a service attachment. The target is not mutable once set as a service attachment.
|
|
10892
|
+
*
|
|
10893
|
+
*
|
|
10894
|
+
*
|
|
10895
|
+
* The following load balancers cannot set the target field (they should set the backendService field instead):
|
|
10896
|
+
*
|
|
10897
|
+
* - Internal passthrough Network Load Balancers
|
|
10898
|
+
* - Backend service-based regional external passthrough Network Load
|
|
10899
|
+
* Balancers
|
|
10900
|
+
* - Global external passthrough Network Load Balancers
|
|
10667
10901
|
*/
|
|
10668
10902
|
target?: string;
|
|
10669
10903
|
}
|
|
@@ -10969,6 +11203,7 @@ declare namespace gapi.client {
|
|
|
10969
11203
|
*/
|
|
10970
11204
|
commitmentInfo?: FutureReservationCommitmentInfo;
|
|
10971
11205
|
confidentialComputeType?:
|
|
11206
|
+
| 'CONFIDENTIAL_COMPUTE_TYPE_BMSAI'
|
|
10972
11207
|
| 'CONFIDENTIAL_COMPUTE_TYPE_TDX'
|
|
10973
11208
|
| 'CONFIDENTIAL_COMPUTE_TYPE_UNSPECIFIED';
|
|
10974
11209
|
/**
|
|
@@ -11719,6 +11954,36 @@ declare namespace gapi.client {
|
|
|
11719
11954
|
*/
|
|
11720
11955
|
destinationAddress?: string;
|
|
11721
11956
|
}
|
|
11957
|
+
interface GlobalFrontendSettings {
|
|
11958
|
+
/** Customer-settable bundle type. */
|
|
11959
|
+
bundleType?:
|
|
11960
|
+
'BUNDLE_TYPE_UNSPECIFIED' | 'GLOBAL_FRONT_END' | 'INDIVIDUAL';
|
|
11961
|
+
/** Output only. [Output Only] Creation timestamp in RFC3339 text format. */
|
|
11962
|
+
creationTimestamp?: string;
|
|
11963
|
+
/** Output only. [Output Only] An optional description of this resource. */
|
|
11964
|
+
description?: string;
|
|
11965
|
+
/** Output only. For optimistic locking */
|
|
11966
|
+
etag?: string;
|
|
11967
|
+
/**
|
|
11968
|
+
* Output only. [Output Only] The unique identifier for the resource. This identifier is
|
|
11969
|
+
* defined by the server.
|
|
11970
|
+
*/
|
|
11971
|
+
id?: string;
|
|
11972
|
+
/**
|
|
11973
|
+
* Output only. OUTPUT_ONLY fields
|
|
11974
|
+
* [Output Only] Name of the resource. Must be 1-63 characters long and match
|
|
11975
|
+
* the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first
|
|
11976
|
+
* character must be a lowercase letter, and all following characters must
|
|
11977
|
+
* be a dash, lowercase letter, or digit, except the last character, which
|
|
11978
|
+
* cannot be a dash.
|
|
11979
|
+
*/
|
|
11980
|
+
name?: string;
|
|
11981
|
+
/** Output only. [Output Only] Server-defined URL for the resource. */
|
|
11982
|
+
selfLink?: string;
|
|
11983
|
+
}
|
|
11984
|
+
interface GlobalFrontendSettingsPatchResponse {
|
|
11985
|
+
operation?: Operation;
|
|
11986
|
+
}
|
|
11722
11987
|
interface GlobalListVmExtensionsResponse {
|
|
11723
11988
|
/**
|
|
11724
11989
|
* Output only. Fingerprint of this resource. A hash of the contents stored
|
|
@@ -12389,6 +12654,7 @@ declare namespace gapi.client {
|
|
|
12389
12654
|
* - IDPF
|
|
12390
12655
|
* - SNP_SVSM_CAPABLE
|
|
12391
12656
|
* - CCA_CAPABLE
|
|
12657
|
+
* - SUSPEND_SAFE_FPR
|
|
12392
12658
|
*
|
|
12393
12659
|
*
|
|
12394
12660
|
* For more information, see
|
|
@@ -12407,6 +12673,7 @@ declare namespace gapi.client {
|
|
|
12407
12673
|
| 'SEV_LIVE_MIGRATABLE_V2'
|
|
12408
12674
|
| 'SEV_SNP_CAPABLE'
|
|
12409
12675
|
| 'SNP_SVSM_CAPABLE'
|
|
12676
|
+
| 'SUSPEND_SAFE_FPR'
|
|
12410
12677
|
| 'TDX_CAPABLE'
|
|
12411
12678
|
| 'UEFI_COMPATIBLE'
|
|
12412
12679
|
| 'VIRTIO_SCSI_MULTIQUEUE'
|
|
@@ -12431,16 +12698,9 @@ declare namespace gapi.client {
|
|
|
12431
12698
|
* create the resource.
|
|
12432
12699
|
*/
|
|
12433
12700
|
description?: string;
|
|
12434
|
-
/**
|
|
12435
|
-
* Capacity guarantee settings for the event of a failover.
|
|
12436
|
-
* This determines whether capacity is guaranteed to be available
|
|
12437
|
-
* in the zones used by the HaController.
|
|
12438
|
-
* Deprecated: This field is deprecated and has no effect.
|
|
12439
|
-
*/
|
|
12440
|
-
failoverCapacity?:
|
|
12441
|
-
'BEST_EFFORT_CAPACITY' | 'FAILOVER_CAPACITY_UNSPECIFIED';
|
|
12442
12701
|
/** Indicates how failover should be initiated. */
|
|
12443
|
-
failoverInitiation?:
|
|
12702
|
+
failoverInitiation?:
|
|
12703
|
+
'AUTOMATIC' | 'FAILOVER_INITIATION_UNSPECIFIED' | 'MANUAL_ONLY';
|
|
12444
12704
|
/**
|
|
12445
12705
|
* Output only. [Output Only] The unique identifier for the resource. This identifier is
|
|
12446
12706
|
* defined by the server.
|
|
@@ -12481,13 +12741,24 @@ declare namespace gapi.client {
|
|
|
12481
12741
|
* It is not settable as a field in the request body.
|
|
12482
12742
|
*/
|
|
12483
12743
|
region?: string;
|
|
12484
|
-
/** Indicates the capacity guarantees in the secondary zone. */
|
|
12485
|
-
secondaryZoneCapacity?:
|
|
12486
|
-
'BEST_EFFORT' | 'SECONDARY_ZONE_CAPACITY_UNSPECIFIED';
|
|
12487
12744
|
/** Output only. [Output only] Server-defined URL for the resource. */
|
|
12488
12745
|
selfLink?: string;
|
|
12489
12746
|
/** Output only. [Output Only] Server-defined URL for this resource with the resource id. */
|
|
12490
12747
|
selfLinkWithId?: string;
|
|
12748
|
+
/** Output only. The current state of the HA Controller. */
|
|
12749
|
+
state?:
|
|
12750
|
+
| 'ACTIVE'
|
|
12751
|
+
| 'CREATING'
|
|
12752
|
+
| 'DELETING'
|
|
12753
|
+
| 'FAILOVER_IN_PROGRESS'
|
|
12754
|
+
| 'FAILOVER_UNAVAILABLE'
|
|
12755
|
+
| 'MULTI_ZONE_FAILURE'
|
|
12756
|
+
| 'PENDING_FAILOVER'
|
|
12757
|
+
| 'STARTING'
|
|
12758
|
+
| 'STATE_UNSPECIFIED'
|
|
12759
|
+
| 'STOPPED'
|
|
12760
|
+
| 'STOPPING'
|
|
12761
|
+
| 'UPDATING';
|
|
12491
12762
|
/** Output only. [Output Only] Status information for the HaController resource. */
|
|
12492
12763
|
status?: HaControllerStatus;
|
|
12493
12764
|
/**
|
|
@@ -12800,6 +13071,8 @@ declare namespace gapi.client {
|
|
|
12800
13071
|
* Filled only if the failover is completed, in lastFailoverInfo.
|
|
12801
13072
|
*/
|
|
12802
13073
|
failoverCompleteTimestamp?: string;
|
|
13074
|
+
/** Output only. The duration of the last failover. */
|
|
13075
|
+
failoverDuration?: string;
|
|
12803
13076
|
/**
|
|
12804
13077
|
* Output only. [Output Only] Indicates if failover has been triggered automatically or
|
|
12805
13078
|
* manually.
|
|
@@ -16414,10 +16687,16 @@ declare namespace gapi.client {
|
|
|
16414
16687
|
*
|
|
16415
16688
|
*
|
|
16416
16689
|
* For example: zones/us-central1-f/machineTypes/custom-4-5120
|
|
16690
|
+
*
|
|
16417
16691
|
* For a full list of restrictions, read theSpecifications
|
|
16418
16692
|
* for custom machine types.
|
|
16419
16693
|
*/
|
|
16420
16694
|
machineType?: string;
|
|
16695
|
+
/**
|
|
16696
|
+
* Map of management interfaces. Keys must be valid RFC1035 names and at most
|
|
16697
|
+
* 63 characters long.
|
|
16698
|
+
*/
|
|
16699
|
+
managementInterfaces?: {[P in string]: InstanceManagementInterface};
|
|
16421
16700
|
/**
|
|
16422
16701
|
* The metadata key/value pairs assigned
|
|
16423
16702
|
* to this instance. This includes metadata keys that were explicitly defined
|
|
@@ -17951,8 +18230,6 @@ declare namespace gapi.client {
|
|
|
17951
18230
|
/** Actions that are allowed to update instances within MIG. */
|
|
17952
18231
|
allowedActions?:
|
|
17953
18232
|
'NONE' | 'REFRESH' | 'REPLACE' | 'RESTART' | 'RESTART_IN_PLACE'[];
|
|
17954
|
-
/** Whether the boot disk is allowed to be updated with restart. */
|
|
17955
|
-
disruptionMode?: 'LEGACY' | 'OPTIMIZED';
|
|
17956
18233
|
/**
|
|
17957
18234
|
* The list of URLs of one or more instances for which you want to apply
|
|
17958
18235
|
* updates. Each URL can be a full URL or a partial URL, such aszones/[ZONE]/instances/[INSTANCE_NAME].
|
|
@@ -18759,8 +19036,6 @@ declare namespace gapi.client {
|
|
|
18759
19036
|
/** Actions that are allowed to update instances within MIG. */
|
|
18760
19037
|
allowedActions?:
|
|
18761
19038
|
'NONE' | 'REFRESH' | 'REPLACE' | 'RESTART' | 'RESTART_IN_PLACE'[];
|
|
18762
|
-
/** Whether the boot disk is allowed to be updated with restart. */
|
|
18763
|
-
disruptionMode?: 'LEGACY' | 'OPTIMIZED';
|
|
18764
19039
|
/**
|
|
18765
19040
|
* The
|
|
18766
19041
|
* instance redistribution policy for regional managed instance groups.
|
|
@@ -19302,6 +19577,49 @@ declare namespace gapi.client {
|
|
|
19302
19577
|
/** Output only. Error message. */
|
|
19303
19578
|
message?: string;
|
|
19304
19579
|
}
|
|
19580
|
+
interface InstanceManagementInterface {
|
|
19581
|
+
/** The authentication configuration for secure connection. */
|
|
19582
|
+
authenticationConfig?: InstanceManagementInterfaceAuthenticationConfig;
|
|
19583
|
+
/**
|
|
19584
|
+
* The IPv4 internal IP address assigned to this management interface
|
|
19585
|
+
* endpoint. This address will be used by the customer to route traffic to
|
|
19586
|
+
* the management interface.
|
|
19587
|
+
*/
|
|
19588
|
+
ipv4Address?: string;
|
|
19589
|
+
/**
|
|
19590
|
+
* The IPv6 internal IP address assigned to this management interface
|
|
19591
|
+
* endpoint. This address will be used by the customer to route traffic to
|
|
19592
|
+
* the management interface if IPv6 is supported and configured.
|
|
19593
|
+
*/
|
|
19594
|
+
ipv6Address?: string;
|
|
19595
|
+
/**
|
|
19596
|
+
* The URL of the VPC network to which the management interface endpoint is
|
|
19597
|
+
* attached. The customer must ensure that this network is correctly
|
|
19598
|
+
* configured for routing to the instance.
|
|
19599
|
+
*/
|
|
19600
|
+
network?: string;
|
|
19601
|
+
/** Output only. [Output Only] The current state of the management interface endpoint. */
|
|
19602
|
+
state?: 'ACTIVE' | 'INACTIVE' | 'PENDING' | 'STATE_UNSPECIFIED';
|
|
19603
|
+
/**
|
|
19604
|
+
* The URL of the subnetwork from which to assign the IP address for the
|
|
19605
|
+
* endpoint. The subnetwork must belong to the specified network and have
|
|
19606
|
+
* available IP addresses.
|
|
19607
|
+
*/
|
|
19608
|
+
subnetwork?: string;
|
|
19609
|
+
/**
|
|
19610
|
+
* Required. The type of management service this interface provides.
|
|
19611
|
+
* Supported types include HOST_MANAGEMENT for direct host control.
|
|
19612
|
+
*/
|
|
19613
|
+
type?: 'HOST_MANAGEMENT' | 'TYPE_UNSPECIFIED';
|
|
19614
|
+
}
|
|
19615
|
+
interface InstanceManagementInterfaceAuthenticationConfig {
|
|
19616
|
+
/**
|
|
19617
|
+
* Required. Resource name of the Cloud Certificate Manager TrustConfig used to
|
|
19618
|
+
* validate client certificates for mTLS. Format:
|
|
19619
|
+
* projects/{project}/locations/{location}/trustConfigs/{trust_config}
|
|
19620
|
+
*/
|
|
19621
|
+
trustConfig?: string;
|
|
19622
|
+
}
|
|
19305
19623
|
interface InstanceMoveRequest {
|
|
19306
19624
|
/**
|
|
19307
19625
|
* The URL of the destination zone to move the instance. This can be a full or
|
|
@@ -20826,7 +21144,7 @@ declare namespace gapi.client {
|
|
|
20826
21144
|
satisfiesPzs?: boolean;
|
|
20827
21145
|
/** Output only. [Output Only] Server-defined URL for the resource. */
|
|
20828
21146
|
selfLink?: string;
|
|
20829
|
-
/** Output only.
|
|
21147
|
+
/** Output only. Server-defined URL for this resource with the resource id. */
|
|
20830
21148
|
selfLinkWithId?: string;
|
|
20831
21149
|
/**
|
|
20832
21150
|
* Output only. [Output Only] The current state of Interconnect functionality, which can
|
|
@@ -22966,6 +23284,16 @@ declare namespace gapi.client {
|
|
|
22966
23284
|
* may match multiple InterconnectLocations.
|
|
22967
23285
|
*/
|
|
22968
23286
|
city?: string;
|
|
23287
|
+
/**
|
|
23288
|
+
* Output only. The maximum unmetered bandwidth for dynamic paths allowable per
|
|
23289
|
+
* WireGroup for this metro.
|
|
23290
|
+
*/
|
|
23291
|
+
maxDynamicPathBandwidthGbps?: string;
|
|
23292
|
+
/**
|
|
23293
|
+
* Output only. The maximum unmetered bandwidth for fixed paths allowable per WireGroup
|
|
23294
|
+
* for this metro.
|
|
23295
|
+
*/
|
|
23296
|
+
maxFixedPathBandwidthGbps?: string;
|
|
22969
23297
|
/**
|
|
22970
23298
|
* Output only. The maximum gbps for a single flow to this metro.
|
|
22971
23299
|
* This limits the total bandwidth which may be configured per wire.
|
|
@@ -25171,12 +25499,17 @@ declare namespace gapi.client {
|
|
|
25171
25499
|
/** Output only. [Output Only] Tag describing the version. */
|
|
25172
25500
|
tag?: string;
|
|
25173
25501
|
/**
|
|
25174
|
-
* Output only.
|
|
25502
|
+
* Output only. The eventual status of the instance. The instance group
|
|
25175
25503
|
* manager will not be identified as stable till each managed instance reaches
|
|
25176
25504
|
* its targetStatus.
|
|
25177
25505
|
*/
|
|
25178
25506
|
targetStatus?:
|
|
25179
|
-
|
|
25507
|
+
| 'ABANDONED'
|
|
25508
|
+
| 'DELETED'
|
|
25509
|
+
| 'INVALID'
|
|
25510
|
+
| 'RUNNING'
|
|
25511
|
+
| 'STOPPED'
|
|
25512
|
+
| 'SUSPENDED';
|
|
25180
25513
|
/** Output only. [Output Only] Intended version of this instance. */
|
|
25181
25514
|
version?: ManagedInstanceVersion;
|
|
25182
25515
|
}
|
|
@@ -25485,13 +25818,12 @@ declare namespace gapi.client {
|
|
|
25485
25818
|
subnetwork?: string;
|
|
25486
25819
|
/**
|
|
25487
25820
|
* Required. The type of management service this interface provides.
|
|
25488
|
-
* Supported types include NMX-C for partition management
|
|
25489
|
-
* monitoring
|
|
25821
|
+
* Supported types include NMX-C for partition management and gNMI for switch
|
|
25822
|
+
* monitoring.
|
|
25490
25823
|
*/
|
|
25491
25824
|
type?:
|
|
25492
25825
|
| 'TYPE_NVLINK_PARTITION_MANAGEMENT'
|
|
25493
25826
|
| 'TYPE_NVLINK_SWITCH_MONITORING'
|
|
25494
|
-
| 'TYPE_TPU_SLICE_MANAGEMENT'
|
|
25495
25827
|
| 'TYPE_UNSPECIFIED';
|
|
25496
25828
|
}
|
|
25497
25829
|
interface Metadata {
|
|
@@ -27532,6 +27864,19 @@ declare namespace gapi.client {
|
|
|
27532
27864
|
igmpQuery?: 'IGMP_QUERY_DISABLED' | 'IGMP_QUERY_V2';
|
|
27533
27865
|
/** The prefix length of the primary internal IPv6 range. */
|
|
27534
27866
|
internalIpv6PrefixLength?: number;
|
|
27867
|
+
/**
|
|
27868
|
+
* [Output Only] This field specifies the internal IPv6 network address
|
|
27869
|
+
* assigned to the CX9 Network Interface Card, which facilitates the routing
|
|
27870
|
+
* of traffic between NICs. For any single CX9 Network Interface Card, the
|
|
27871
|
+
* identical internalNicLoadBalancingIpv6Address is assigned across all four
|
|
27872
|
+
* associated ports.
|
|
27873
|
+
*/
|
|
27874
|
+
internalNicLoadBalancingIpv6Address?: string;
|
|
27875
|
+
/**
|
|
27876
|
+
* [Output Only] The prefix length of the internal IPv6 Nic load balancing
|
|
27877
|
+
* prefix.
|
|
27878
|
+
*/
|
|
27879
|
+
internalNicLoadBalancingIpv6PrefixLength?: number;
|
|
27535
27880
|
/**
|
|
27536
27881
|
* An array of IPv6 access configurations for this interface. Currently, only
|
|
27537
27882
|
* one IPv6 access config, DIRECT_IPV6, is supported. If there
|
|
@@ -30223,7 +30568,7 @@ declare namespace gapi.client {
|
|
|
30223
30568
|
* methods if not explicitly provided by the user.
|
|
30224
30569
|
*/
|
|
30225
30570
|
firewallPolicyRuleOperationMetadata?: FirewallPolicyRuleOperationMetadata;
|
|
30226
|
-
/** Output only.
|
|
30571
|
+
/** Output only. Metadata for GetHealth operations. */
|
|
30227
30572
|
getHealthOperationMetadata?: GetHealthOperationMetadata;
|
|
30228
30573
|
getVersionOperationMetadata?: GetVersionOperationMetadata;
|
|
30229
30574
|
/**
|
|
@@ -33643,7 +33988,7 @@ declare namespace gapi.client {
|
|
|
33643
33988
|
creationSizeBytes?: string;
|
|
33644
33989
|
/** Output only. [Output Only] Creation timestamp inRFC3339 text format. */
|
|
33645
33990
|
creationTimestamp?: string;
|
|
33646
|
-
/** Output only. [Output Only]
|
|
33991
|
+
/** Output only. [Output Only] Deletion timestamp of snapshot inRFC3339 text format. */
|
|
33647
33992
|
deletionTimestamp?: string;
|
|
33648
33993
|
/** An optional description of this resource. */
|
|
33649
33994
|
description?: string;
|
|
@@ -33904,7 +34249,7 @@ declare namespace gapi.client {
|
|
|
33904
34249
|
}
|
|
33905
34250
|
interface RegexRewrite {
|
|
33906
34251
|
/**
|
|
33907
|
-
* The regular expression used to match against the URL path.
|
|
34252
|
+
* Required. The regular expression used to match against the URL path.
|
|
33908
34253
|
* It uses RE2 syntax with the following constraints:
|
|
33909
34254
|
*
|
|
33910
34255
|
*
|
|
@@ -33931,7 +34276,7 @@ declare namespace gapi.client {
|
|
|
33931
34276
|
*/
|
|
33932
34277
|
pathPattern?: string;
|
|
33933
34278
|
/**
|
|
33934
|
-
* Required when path pattern is specified. Used to rewrite matching parts of
|
|
34279
|
+
* Required. Required when path pattern is specified. Used to rewrite matching parts of
|
|
33935
34280
|
* the path.
|
|
33936
34281
|
*/
|
|
33937
34282
|
pathSubstitution?: string;
|
|
@@ -34059,6 +34404,12 @@ declare namespace gapi.client {
|
|
|
34059
34404
|
*/
|
|
34060
34405
|
destinationAddress?: string;
|
|
34061
34406
|
}
|
|
34407
|
+
interface RegionAddressesUpdatePublicPtrRequest {
|
|
34408
|
+
/** The public DNS PTR record to be configured for this external IP. */
|
|
34409
|
+
ptrDomainName?: string;
|
|
34410
|
+
/** The TTL in seconds for public DNS PTR record. */
|
|
34411
|
+
ptrDomainNameTtl?: number;
|
|
34412
|
+
}
|
|
34062
34413
|
interface RegionAutoscalerList {
|
|
34063
34414
|
/** [Output Only] Unique identifier for the resource; defined by the server. */
|
|
34064
34415
|
id?: string;
|
|
@@ -34576,8 +34927,6 @@ declare namespace gapi.client {
|
|
|
34576
34927
|
/** Actions that are allowed to update instances within MIG. */
|
|
34577
34928
|
allowedActions?:
|
|
34578
34929
|
'NONE' | 'REFRESH' | 'REPLACE' | 'RESTART' | 'RESTART_IN_PLACE'[];
|
|
34579
|
-
/** Whether the boot disk is allowed to be updated with restart. */
|
|
34580
|
-
disruptionMode?: 'LEGACY' | 'OPTIMIZED';
|
|
34581
34930
|
/**
|
|
34582
34931
|
* The list of URLs of one or more instances for which you want to apply
|
|
34583
34932
|
* updates. Each URL can be a full URL or a partial URL, such aszones/[ZONE]/instances/[INSTANCE_NAME].
|
|
@@ -35328,6 +35677,7 @@ declare namespace gapi.client {
|
|
|
35328
35677
|
*/
|
|
35329
35678
|
commitment?: string;
|
|
35330
35679
|
confidentialComputeType?:
|
|
35680
|
+
| 'CONFIDENTIAL_COMPUTE_TYPE_BMSAI'
|
|
35331
35681
|
| 'CONFIDENTIAL_COMPUTE_TYPE_TDX'
|
|
35332
35682
|
| 'CONFIDENTIAL_COMPUTE_TYPE_UNSPECIFIED';
|
|
35333
35683
|
/**
|
|
@@ -38166,6 +38516,13 @@ declare namespace gapi.client {
|
|
|
38166
38516
|
* attachments (interconnectAttachments).
|
|
38167
38517
|
*/
|
|
38168
38518
|
encryptedInterconnectRouter?: boolean;
|
|
38519
|
+
/**
|
|
38520
|
+
* ETag for optimistic concurrency control as described by AIP 154. Used to
|
|
38521
|
+
* prevent conflicting updates. If provided, the request will succeed only if
|
|
38522
|
+
* the etag matches the current etag of the router; otherwise, the request
|
|
38523
|
+
* fails with an ABORTED error.
|
|
38524
|
+
*/
|
|
38525
|
+
etag?: string;
|
|
38169
38526
|
/**
|
|
38170
38527
|
* [Output Only] The unique identifier for the resource. This identifier is
|
|
38171
38528
|
* defined by the server.
|
|
@@ -46486,7 +46843,8 @@ declare namespace gapi.client {
|
|
|
46486
46843
|
* The server-defined URL for the resource. This field is applicable only when
|
|
46487
46844
|
* the containing target pool is serving a forwarding rule as the primary
|
|
46488
46845
|
* pool, and its failoverRatio field is properly set to a value
|
|
46489
|
-
* between [0, 1].
|
|
46846
|
+
* between [0, 1].
|
|
46847
|
+
* backupPool and failoverRatio together define
|
|
46490
46848
|
* the fallback behavior of the primary target pool: if the ratio of the
|
|
46491
46849
|
* healthy instances in the primary pool is at or belowfailoverRatio, traffic arriving at the load-balanced
|
|
46492
46850
|
* IP will be directed to the backup pool.
|
|
@@ -48697,6 +49055,31 @@ declare namespace gapi.client {
|
|
|
48697
49055
|
*/
|
|
48698
49056
|
reportNamePrefix?: string;
|
|
48699
49057
|
}
|
|
49058
|
+
interface UtilizationRange {
|
|
49059
|
+
/**
|
|
49060
|
+
* Required. The upper bound of the utilization range. Must be greater or equal to
|
|
49061
|
+
* min_utilization. This value is required when using range-based scaling.
|
|
49062
|
+
*
|
|
49063
|
+
* Scaling out is triggered if the utilization exceeds this value.
|
|
49064
|
+
*/
|
|
49065
|
+
maxUtilization?: number;
|
|
49066
|
+
/**
|
|
49067
|
+
* Required. The lower bound of the utilization range. Must be smaller or equal to
|
|
49068
|
+
* max_utilization. This value is required when using range-based scaling.
|
|
49069
|
+
*
|
|
49070
|
+
* Scaling in is considered only if the utilization drops below this value.
|
|
49071
|
+
*/
|
|
49072
|
+
minUtilization?: number;
|
|
49073
|
+
/**
|
|
49074
|
+
* The target utilization that the autoscaler aims to achieve when scaling
|
|
49075
|
+
* is triggered. This value must be within the range [min_utilization,
|
|
49076
|
+
* max_utilization].
|
|
49077
|
+
*
|
|
49078
|
+
* If not specified, this will default to the average of max_utilization and
|
|
49079
|
+
* min_utilization.
|
|
49080
|
+
*/
|
|
49081
|
+
utilizationTarget?: number;
|
|
49082
|
+
}
|
|
48700
49083
|
interface VmEndpointNatMappings {
|
|
48701
49084
|
/** Output only. Name of the VM instance which the endpoint belongs to */
|
|
48702
49085
|
instanceName?: string;
|
|
@@ -49801,6 +50184,16 @@ declare namespace gapi.client {
|
|
|
49801
50184
|
* be set only for Classic VPN tunnels.
|
|
49802
50185
|
*/
|
|
49803
50186
|
peerIp?: string;
|
|
50187
|
+
/**
|
|
50188
|
+
* User specified list of PQC key exchange mechanisms (KEMs) to use for the
|
|
50189
|
+
* phase 1 of the IKE protocol.
|
|
50190
|
+
*/
|
|
50191
|
+
pqcPhase1?: VpnTunnelPqc;
|
|
50192
|
+
/**
|
|
50193
|
+
* User specified list of PQC key exchange mechanisms (KEMs) to use for the
|
|
50194
|
+
* phase 2 of the IKE protocol.
|
|
50195
|
+
*/
|
|
50196
|
+
pqcPhase2?: VpnTunnelPqc;
|
|
49804
50197
|
/**
|
|
49805
50198
|
* [Output Only] URL of the region where the VPN tunnel resides.
|
|
49806
50199
|
* You must specify this field as part of the HTTP request URL. It is
|
|
@@ -49894,6 +50287,43 @@ declare namespace gapi.client {
|
|
|
49894
50287
|
*/
|
|
49895
50288
|
vpnGatewayInterface?: number;
|
|
49896
50289
|
}
|
|
50290
|
+
interface VpnTunnelAdditionalKeyExchanges {
|
|
50291
|
+
ke1s?:
|
|
50292
|
+
| 'KEY_ENCAPSULATION_MECHANISM_UNSPECIFIED'
|
|
50293
|
+
| 'KE_NONE'
|
|
50294
|
+
| 'ML_KEM_1024'
|
|
50295
|
+
| 'ML_KEM_768'[];
|
|
50296
|
+
ke2s?:
|
|
50297
|
+
| 'KEY_ENCAPSULATION_MECHANISM_UNSPECIFIED'
|
|
50298
|
+
| 'KE_NONE'
|
|
50299
|
+
| 'ML_KEM_1024'
|
|
50300
|
+
| 'ML_KEM_768'[];
|
|
50301
|
+
ke3s?:
|
|
50302
|
+
| 'KEY_ENCAPSULATION_MECHANISM_UNSPECIFIED'
|
|
50303
|
+
| 'KE_NONE'
|
|
50304
|
+
| 'ML_KEM_1024'
|
|
50305
|
+
| 'ML_KEM_768'[];
|
|
50306
|
+
ke4s?:
|
|
50307
|
+
| 'KEY_ENCAPSULATION_MECHANISM_UNSPECIFIED'
|
|
50308
|
+
| 'KE_NONE'
|
|
50309
|
+
| 'ML_KEM_1024'
|
|
50310
|
+
| 'ML_KEM_768'[];
|
|
50311
|
+
ke5s?:
|
|
50312
|
+
| 'KEY_ENCAPSULATION_MECHANISM_UNSPECIFIED'
|
|
50313
|
+
| 'KE_NONE'
|
|
50314
|
+
| 'ML_KEM_1024'
|
|
50315
|
+
| 'ML_KEM_768'[];
|
|
50316
|
+
ke6s?:
|
|
50317
|
+
| 'KEY_ENCAPSULATION_MECHANISM_UNSPECIFIED'
|
|
50318
|
+
| 'KE_NONE'
|
|
50319
|
+
| 'ML_KEM_1024'
|
|
50320
|
+
| 'ML_KEM_768'[];
|
|
50321
|
+
ke7s?:
|
|
50322
|
+
| 'KEY_ENCAPSULATION_MECHANISM_UNSPECIFIED'
|
|
50323
|
+
| 'KE_NONE'
|
|
50324
|
+
| 'ML_KEM_1024'
|
|
50325
|
+
| 'ML_KEM_768'[];
|
|
50326
|
+
}
|
|
49897
50327
|
interface VpnTunnelAggregatedList {
|
|
49898
50328
|
/** [Output Only] Unique identifier for the resource; defined by the server. */
|
|
49899
50329
|
id?: string;
|
|
@@ -50100,6 +50530,10 @@ declare namespace gapi.client {
|
|
|
50100
50530
|
integrity?: string[];
|
|
50101
50531
|
pfs?: string[];
|
|
50102
50532
|
}
|
|
50533
|
+
interface VpnTunnelPqc {
|
|
50534
|
+
keys?: VpnTunnelAdditionalKeyExchanges;
|
|
50535
|
+
mode?: 'DISABLED' | 'ENABLED' | 'PQC_MODE_UNSPECIFIED';
|
|
50536
|
+
}
|
|
50103
50537
|
interface VpnTunnelsScopedList {
|
|
50104
50538
|
/** A list of VPN tunnels contained in this scope. */
|
|
50105
50539
|
vpnTunnels?: VpnTunnel[];
|
|
@@ -50580,6 +51014,8 @@ declare namespace gapi.client {
|
|
|
50580
51014
|
* pseudowires.
|
|
50581
51015
|
*/
|
|
50582
51016
|
faultResponse?: 'DISABLE_PORT' | 'NONE';
|
|
51017
|
+
/** The flow management configuration for the wire. */
|
|
51018
|
+
flowManagement?: 'DYNAMIC_PATH' | 'FIXED_PATH';
|
|
50583
51019
|
/** The network service class. */
|
|
50584
51020
|
networkServiceClass?: 'BRONZE' | 'GOLD';
|
|
50585
51021
|
}
|
|
@@ -52127,6 +52563,108 @@ declare namespace gapi.client {
|
|
|
52127
52563
|
},
|
|
52128
52564
|
body: TestPermissionsRequest,
|
|
52129
52565
|
): Request<TestPermissionsResponse>;
|
|
52566
|
+
/** Set a custom ptr domain name on regional address. */
|
|
52567
|
+
updatePublicPtr(request: {
|
|
52568
|
+
/** V1 error format. */
|
|
52569
|
+
'$.xgafv'?: '1' | '2';
|
|
52570
|
+
/** OAuth access token. */
|
|
52571
|
+
access_token?: string;
|
|
52572
|
+
/** Name of the address resource to update. */
|
|
52573
|
+
address: string;
|
|
52574
|
+
/** Data format for response. */
|
|
52575
|
+
alt?: 'json' | 'media' | 'proto';
|
|
52576
|
+
/** JSONP */
|
|
52577
|
+
callback?: string;
|
|
52578
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
52579
|
+
fields?: string;
|
|
52580
|
+
/** 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. */
|
|
52581
|
+
key?: string;
|
|
52582
|
+
/** OAuth 2.0 token for the current user. */
|
|
52583
|
+
oauth_token?: string;
|
|
52584
|
+
/** Returns response with indentations and line breaks. */
|
|
52585
|
+
prettyPrint?: boolean;
|
|
52586
|
+
/** Source project ID where the address belongs. */
|
|
52587
|
+
project: string;
|
|
52588
|
+
/** 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. */
|
|
52589
|
+
quotaUser?: string;
|
|
52590
|
+
/** Name of the region for this request. */
|
|
52591
|
+
region: string;
|
|
52592
|
+
/**
|
|
52593
|
+
* An optional request ID to identify requests. Specify a unique request ID so
|
|
52594
|
+
* that if you must retry your request, the server will know to ignore the
|
|
52595
|
+
* request if it has already been completed.
|
|
52596
|
+
*
|
|
52597
|
+
* For example, consider a situation where you make an initial request and
|
|
52598
|
+
* the request times out. If you make the request again with the same
|
|
52599
|
+
* request ID, the server can check if original operation with the same
|
|
52600
|
+
* request ID was received, and if so, will ignore the second request. This
|
|
52601
|
+
* prevents clients from accidentally creating duplicate commitments.
|
|
52602
|
+
*
|
|
52603
|
+
* The request ID must be
|
|
52604
|
+
* a valid UUID with the exception that zero UUID is not supported
|
|
52605
|
+
* (00000000-0000-0000-0000-000000000000).
|
|
52606
|
+
*/
|
|
52607
|
+
requestId?: string;
|
|
52608
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
52609
|
+
upload_protocol?: string;
|
|
52610
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
52611
|
+
uploadType?: string;
|
|
52612
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
52613
|
+
userIp?: string;
|
|
52614
|
+
/** Request body */
|
|
52615
|
+
resource: RegionAddressesUpdatePublicPtrRequest;
|
|
52616
|
+
}): Request<Operation>;
|
|
52617
|
+
updatePublicPtr(
|
|
52618
|
+
request: {
|
|
52619
|
+
/** V1 error format. */
|
|
52620
|
+
'$.xgafv'?: '1' | '2';
|
|
52621
|
+
/** OAuth access token. */
|
|
52622
|
+
access_token?: string;
|
|
52623
|
+
/** Name of the address resource to update. */
|
|
52624
|
+
address: string;
|
|
52625
|
+
/** Data format for response. */
|
|
52626
|
+
alt?: 'json' | 'media' | 'proto';
|
|
52627
|
+
/** JSONP */
|
|
52628
|
+
callback?: string;
|
|
52629
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
52630
|
+
fields?: string;
|
|
52631
|
+
/** 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. */
|
|
52632
|
+
key?: string;
|
|
52633
|
+
/** OAuth 2.0 token for the current user. */
|
|
52634
|
+
oauth_token?: string;
|
|
52635
|
+
/** Returns response with indentations and line breaks. */
|
|
52636
|
+
prettyPrint?: boolean;
|
|
52637
|
+
/** Source project ID where the address belongs. */
|
|
52638
|
+
project: string;
|
|
52639
|
+
/** 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. */
|
|
52640
|
+
quotaUser?: string;
|
|
52641
|
+
/** Name of the region for this request. */
|
|
52642
|
+
region: string;
|
|
52643
|
+
/**
|
|
52644
|
+
* An optional request ID to identify requests. Specify a unique request ID so
|
|
52645
|
+
* that if you must retry your request, the server will know to ignore the
|
|
52646
|
+
* request if it has already been completed.
|
|
52647
|
+
*
|
|
52648
|
+
* For example, consider a situation where you make an initial request and
|
|
52649
|
+
* the request times out. If you make the request again with the same
|
|
52650
|
+
* request ID, the server can check if original operation with the same
|
|
52651
|
+
* request ID was received, and if so, will ignore the second request. This
|
|
52652
|
+
* prevents clients from accidentally creating duplicate commitments.
|
|
52653
|
+
*
|
|
52654
|
+
* The request ID must be
|
|
52655
|
+
* a valid UUID with the exception that zero UUID is not supported
|
|
52656
|
+
* (00000000-0000-0000-0000-000000000000).
|
|
52657
|
+
*/
|
|
52658
|
+
requestId?: string;
|
|
52659
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
52660
|
+
upload_protocol?: string;
|
|
52661
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
52662
|
+
uploadType?: string;
|
|
52663
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
52664
|
+
userIp?: string;
|
|
52665
|
+
},
|
|
52666
|
+
body: RegionAddressesUpdatePublicPtrRequest,
|
|
52667
|
+
): Request<Operation>;
|
|
52130
52668
|
}
|
|
52131
52669
|
interface AdviceResource {
|
|
52132
52670
|
/**
|
|
@@ -65268,6 +65806,102 @@ declare namespace gapi.client {
|
|
|
65268
65806
|
body: TestPermissionsRequest,
|
|
65269
65807
|
): Request<TestPermissionsResponse>;
|
|
65270
65808
|
}
|
|
65809
|
+
interface GlobalFrontendSettingsResource {
|
|
65810
|
+
/** Gets the Global Frontend Billing Bundle Settings for a project. */
|
|
65811
|
+
get(request?: {
|
|
65812
|
+
/** V1 error format. */
|
|
65813
|
+
'$.xgafv'?: '1' | '2';
|
|
65814
|
+
/** OAuth access token. */
|
|
65815
|
+
access_token?: string;
|
|
65816
|
+
/** Data format for response. */
|
|
65817
|
+
alt?: 'json' | 'media' | 'proto';
|
|
65818
|
+
/** JSONP */
|
|
65819
|
+
callback?: string;
|
|
65820
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
65821
|
+
fields?: string;
|
|
65822
|
+
/** 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. */
|
|
65823
|
+
key?: string;
|
|
65824
|
+
/** OAuth 2.0 token for the current user. */
|
|
65825
|
+
oauth_token?: string;
|
|
65826
|
+
/** Returns response with indentations and line breaks. */
|
|
65827
|
+
prettyPrint?: boolean;
|
|
65828
|
+
project: string;
|
|
65829
|
+
/** 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. */
|
|
65830
|
+
quotaUser?: string;
|
|
65831
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
65832
|
+
upload_protocol?: string;
|
|
65833
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
65834
|
+
uploadType?: string;
|
|
65835
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
65836
|
+
userIp?: string;
|
|
65837
|
+
}): Request<GlobalFrontendSettings>;
|
|
65838
|
+
/** Updates the Global Frontend Billing Bundle Settings for a project. */
|
|
65839
|
+
patch(request: {
|
|
65840
|
+
/** V1 error format. */
|
|
65841
|
+
'$.xgafv'?: '1' | '2';
|
|
65842
|
+
/** OAuth access token. */
|
|
65843
|
+
access_token?: string;
|
|
65844
|
+
/** Data format for response. */
|
|
65845
|
+
alt?: 'json' | 'media' | 'proto';
|
|
65846
|
+
/** JSONP */
|
|
65847
|
+
callback?: string;
|
|
65848
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
65849
|
+
fields?: string;
|
|
65850
|
+
/** 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. */
|
|
65851
|
+
key?: string;
|
|
65852
|
+
/** OAuth 2.0 token for the current user. */
|
|
65853
|
+
oauth_token?: string;
|
|
65854
|
+
/** Returns response with indentations and line breaks. */
|
|
65855
|
+
prettyPrint?: boolean;
|
|
65856
|
+
project: string;
|
|
65857
|
+
/** 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. */
|
|
65858
|
+
quotaUser?: string;
|
|
65859
|
+
requestId?: string;
|
|
65860
|
+
/** e.g., "type" */
|
|
65861
|
+
updateMask?: string;
|
|
65862
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
65863
|
+
upload_protocol?: string;
|
|
65864
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
65865
|
+
uploadType?: string;
|
|
65866
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
65867
|
+
userIp?: string;
|
|
65868
|
+
/** Request body */
|
|
65869
|
+
resource: GlobalFrontendSettings;
|
|
65870
|
+
}): Request<GlobalFrontendSettingsPatchResponse>;
|
|
65871
|
+
patch(
|
|
65872
|
+
request: {
|
|
65873
|
+
/** V1 error format. */
|
|
65874
|
+
'$.xgafv'?: '1' | '2';
|
|
65875
|
+
/** OAuth access token. */
|
|
65876
|
+
access_token?: string;
|
|
65877
|
+
/** Data format for response. */
|
|
65878
|
+
alt?: 'json' | 'media' | 'proto';
|
|
65879
|
+
/** JSONP */
|
|
65880
|
+
callback?: string;
|
|
65881
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
65882
|
+
fields?: string;
|
|
65883
|
+
/** 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. */
|
|
65884
|
+
key?: string;
|
|
65885
|
+
/** OAuth 2.0 token for the current user. */
|
|
65886
|
+
oauth_token?: string;
|
|
65887
|
+
/** Returns response with indentations and line breaks. */
|
|
65888
|
+
prettyPrint?: boolean;
|
|
65889
|
+
project: string;
|
|
65890
|
+
/** 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. */
|
|
65891
|
+
quotaUser?: string;
|
|
65892
|
+
requestId?: string;
|
|
65893
|
+
/** e.g., "type" */
|
|
65894
|
+
updateMask?: string;
|
|
65895
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
65896
|
+
upload_protocol?: string;
|
|
65897
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
65898
|
+
uploadType?: string;
|
|
65899
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
65900
|
+
userIp?: string;
|
|
65901
|
+
},
|
|
65902
|
+
body: GlobalFrontendSettings,
|
|
65903
|
+
): Request<GlobalFrontendSettingsPatchResponse>;
|
|
65904
|
+
}
|
|
65271
65905
|
interface GlobalNetworkEndpointGroupsResource {
|
|
65272
65906
|
/** Attach a network endpoint to the specified network endpoint group. */
|
|
65273
65907
|
attachNetworkEndpoints(request: {
|
|
@@ -122919,6 +123553,44 @@ declare namespace gapi.client {
|
|
|
122919
123553
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
122920
123554
|
userIp?: string;
|
|
122921
123555
|
}): Request<SslPolicy>;
|
|
123556
|
+
/**
|
|
123557
|
+
* Gets the access control policy for a resource. May be empty if no such
|
|
123558
|
+
* policy or resource exists.
|
|
123559
|
+
*/
|
|
123560
|
+
getIamPolicy(request?: {
|
|
123561
|
+
/** V1 error format. */
|
|
123562
|
+
'$.xgafv'?: '1' | '2';
|
|
123563
|
+
/** OAuth access token. */
|
|
123564
|
+
access_token?: string;
|
|
123565
|
+
/** Data format for response. */
|
|
123566
|
+
alt?: 'json' | 'media' | 'proto';
|
|
123567
|
+
/** JSONP */
|
|
123568
|
+
callback?: string;
|
|
123569
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
123570
|
+
fields?: string;
|
|
123571
|
+
/** 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. */
|
|
123572
|
+
key?: string;
|
|
123573
|
+
/** OAuth 2.0 token for the current user. */
|
|
123574
|
+
oauth_token?: string;
|
|
123575
|
+
/** Requested IAM Policy version. */
|
|
123576
|
+
optionsRequestedPolicyVersion?: number;
|
|
123577
|
+
/** Returns response with indentations and line breaks. */
|
|
123578
|
+
prettyPrint?: boolean;
|
|
123579
|
+
/** Project ID for this request. */
|
|
123580
|
+
project: string;
|
|
123581
|
+
/** 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. */
|
|
123582
|
+
quotaUser?: string;
|
|
123583
|
+
/** The name of the region for this request. */
|
|
123584
|
+
region: string;
|
|
123585
|
+
/** Name or id of the resource for this request. */
|
|
123586
|
+
resource: string;
|
|
123587
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
123588
|
+
upload_protocol?: string;
|
|
123589
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
123590
|
+
uploadType?: string;
|
|
123591
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
123592
|
+
userIp?: string;
|
|
123593
|
+
}): Request<Policy>;
|
|
122922
123594
|
/**
|
|
122923
123595
|
* Creates a new policy in the specified project and region using the data
|
|
122924
123596
|
* included in the request.
|
|
@@ -123392,6 +124064,45 @@ declare namespace gapi.client {
|
|
|
123392
124064
|
},
|
|
123393
124065
|
body: SslPolicy,
|
|
123394
124066
|
): Request<Operation>;
|
|
124067
|
+
/**
|
|
124068
|
+
* Sets the access control policy on the specified resource.
|
|
124069
|
+
* Replaces any existing policy.
|
|
124070
|
+
*/
|
|
124071
|
+
setIamPolicy(
|
|
124072
|
+
request: {
|
|
124073
|
+
/** V1 error format. */
|
|
124074
|
+
'$.xgafv'?: '1' | '2';
|
|
124075
|
+
/** OAuth access token. */
|
|
124076
|
+
access_token?: string;
|
|
124077
|
+
/** Data format for response. */
|
|
124078
|
+
alt?: 'json' | 'media' | 'proto';
|
|
124079
|
+
/** JSONP */
|
|
124080
|
+
callback?: string;
|
|
124081
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
124082
|
+
fields?: string;
|
|
124083
|
+
/** 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. */
|
|
124084
|
+
key?: string;
|
|
124085
|
+
/** OAuth 2.0 token for the current user. */
|
|
124086
|
+
oauth_token?: string;
|
|
124087
|
+
/** Returns response with indentations and line breaks. */
|
|
124088
|
+
prettyPrint?: boolean;
|
|
124089
|
+
/** Project ID for this request. */
|
|
124090
|
+
project: string;
|
|
124091
|
+
/** 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. */
|
|
124092
|
+
quotaUser?: string;
|
|
124093
|
+
/** The name of the region for this request. */
|
|
124094
|
+
region: string;
|
|
124095
|
+
/** Name or id of the resource for this request. */
|
|
124096
|
+
resource: string;
|
|
124097
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
124098
|
+
upload_protocol?: string;
|
|
124099
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
124100
|
+
uploadType?: string;
|
|
124101
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
124102
|
+
userIp?: string;
|
|
124103
|
+
},
|
|
124104
|
+
body: RegionSetPolicyRequest,
|
|
124105
|
+
): Request<Policy>;
|
|
123395
124106
|
/** Returns permissions that a caller has on the specified resource. */
|
|
123396
124107
|
testIamPermissions(
|
|
123397
124108
|
request: {
|
|
@@ -129726,6 +130437,13 @@ declare namespace gapi.client {
|
|
|
129726
130437
|
alt?: 'json' | 'media' | 'proto';
|
|
129727
130438
|
/** JSONP */
|
|
129728
130439
|
callback?: string;
|
|
130440
|
+
/**
|
|
130441
|
+
* ETag for optimistic concurrency control as described by AIP 154. Used to
|
|
130442
|
+
* prevent conflicting updates. If provided, the request will succeed only if
|
|
130443
|
+
* the etag matches the current etag of the router; otherwise, the request
|
|
130444
|
+
* fails with an ABORTED error.
|
|
130445
|
+
*/
|
|
130446
|
+
etag?: string;
|
|
129729
130447
|
/** Selector specifying which fields to include in a partial response. */
|
|
129730
130448
|
fields?: string;
|
|
129731
130449
|
/** 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. */
|
|
@@ -135734,6 +136452,42 @@ declare namespace gapi.client {
|
|
|
135734
136452
|
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
135735
136453
|
userIp?: string;
|
|
135736
136454
|
}): Request<SslPolicy>;
|
|
136455
|
+
/**
|
|
136456
|
+
* Gets the access control policy for a resource. May be empty if no such
|
|
136457
|
+
* policy or resource exists.
|
|
136458
|
+
*/
|
|
136459
|
+
getIamPolicy(request?: {
|
|
136460
|
+
/** V1 error format. */
|
|
136461
|
+
'$.xgafv'?: '1' | '2';
|
|
136462
|
+
/** OAuth access token. */
|
|
136463
|
+
access_token?: string;
|
|
136464
|
+
/** Data format for response. */
|
|
136465
|
+
alt?: 'json' | 'media' | 'proto';
|
|
136466
|
+
/** JSONP */
|
|
136467
|
+
callback?: string;
|
|
136468
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
136469
|
+
fields?: string;
|
|
136470
|
+
/** 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. */
|
|
136471
|
+
key?: string;
|
|
136472
|
+
/** OAuth 2.0 token for the current user. */
|
|
136473
|
+
oauth_token?: string;
|
|
136474
|
+
/** Requested IAM Policy version. */
|
|
136475
|
+
optionsRequestedPolicyVersion?: number;
|
|
136476
|
+
/** Returns response with indentations and line breaks. */
|
|
136477
|
+
prettyPrint?: boolean;
|
|
136478
|
+
/** Project ID for this request. */
|
|
136479
|
+
project: string;
|
|
136480
|
+
/** 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. */
|
|
136481
|
+
quotaUser?: string;
|
|
136482
|
+
/** Name or id of the resource for this request. */
|
|
136483
|
+
resource: string;
|
|
136484
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
136485
|
+
upload_protocol?: string;
|
|
136486
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
136487
|
+
uploadType?: string;
|
|
136488
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
136489
|
+
userIp?: string;
|
|
136490
|
+
}): Request<Policy>;
|
|
135737
136491
|
/** Returns the specified SSL policy resource. */
|
|
135738
136492
|
insert(request: {
|
|
135739
136493
|
/** V1 error format. */
|
|
@@ -136192,6 +136946,43 @@ declare namespace gapi.client {
|
|
|
136192
136946
|
},
|
|
136193
136947
|
body: SslPolicy,
|
|
136194
136948
|
): Request<Operation>;
|
|
136949
|
+
/**
|
|
136950
|
+
* Sets the access control policy on the specified resource.
|
|
136951
|
+
* Replaces any existing policy.
|
|
136952
|
+
*/
|
|
136953
|
+
setIamPolicy(
|
|
136954
|
+
request: {
|
|
136955
|
+
/** V1 error format. */
|
|
136956
|
+
'$.xgafv'?: '1' | '2';
|
|
136957
|
+
/** OAuth access token. */
|
|
136958
|
+
access_token?: string;
|
|
136959
|
+
/** Data format for response. */
|
|
136960
|
+
alt?: 'json' | 'media' | 'proto';
|
|
136961
|
+
/** JSONP */
|
|
136962
|
+
callback?: string;
|
|
136963
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
136964
|
+
fields?: string;
|
|
136965
|
+
/** 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. */
|
|
136966
|
+
key?: string;
|
|
136967
|
+
/** OAuth 2.0 token for the current user. */
|
|
136968
|
+
oauth_token?: string;
|
|
136969
|
+
/** Returns response with indentations and line breaks. */
|
|
136970
|
+
prettyPrint?: boolean;
|
|
136971
|
+
/** Project ID for this request. */
|
|
136972
|
+
project: string;
|
|
136973
|
+
/** 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. */
|
|
136974
|
+
quotaUser?: string;
|
|
136975
|
+
/** Name or id of the resource for this request. */
|
|
136976
|
+
resource: string;
|
|
136977
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
136978
|
+
upload_protocol?: string;
|
|
136979
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
136980
|
+
uploadType?: string;
|
|
136981
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
136982
|
+
userIp?: string;
|
|
136983
|
+
},
|
|
136984
|
+
body: GlobalSetPolicyRequest,
|
|
136985
|
+
): Request<Policy>;
|
|
136195
136986
|
/** Returns permissions that a caller has on the specified resource. */
|
|
136196
136987
|
testIamPermissions(
|
|
136197
136988
|
request: {
|
|
@@ -149001,6 +149792,8 @@ declare namespace gapi.client {
|
|
|
149001
149792
|
|
|
149002
149793
|
const globalForwardingRules: GlobalForwardingRulesResource;
|
|
149003
149794
|
|
|
149795
|
+
const globalFrontendSettings: GlobalFrontendSettingsResource;
|
|
149796
|
+
|
|
149004
149797
|
const globalNetworkEndpointGroups: GlobalNetworkEndpointGroupsResource;
|
|
149005
149798
|
|
|
149006
149799
|
const globalOperations: GlobalOperationsResource;
|