@maxim_mazurok/gapi.client.compute-alpha 0.0.20240604 → 0.0.20240702
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 +293 -18
- package/package.json +1 -1
- package/readme.md +22 -2
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: 20240702
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -310,6 +310,10 @@ declare namespace gapi.client {
|
|
|
310
310
|
/** Full or partial URL to accelerator type. e.g. "projects/{PROJECT}/zones/{ZONE}/acceleratorTypes/ct4l" */
|
|
311
311
|
acceleratorType?: string;
|
|
312
312
|
}
|
|
313
|
+
interface AllocationReservationSharingPolicy {
|
|
314
|
+
/** Sharing config for all Google Cloud services. */
|
|
315
|
+
serviceShareType?: string;
|
|
316
|
+
}
|
|
313
317
|
interface AllocationResourceStatus {
|
|
314
318
|
/** Allocation Properties of this reservation. */
|
|
315
319
|
specificSkuAllocation?: AllocationResourceStatusSpecificSKUAllocation;
|
|
@@ -317,6 +321,8 @@ declare namespace gapi.client {
|
|
|
317
321
|
interface AllocationResourceStatusSpecificSKUAllocation {
|
|
318
322
|
/** ID of the instance template used to populate reservation properties. */
|
|
319
323
|
sourceInstanceTemplateId?: string;
|
|
324
|
+
/** Per service utilization breakdown. The Key is the Google Cloud managed service name. */
|
|
325
|
+
utilizations?: {[P in string]: string};
|
|
320
326
|
}
|
|
321
327
|
interface AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk {
|
|
322
328
|
/** Specifies the size of the disk in base-2 GB. */
|
|
@@ -667,6 +673,8 @@ declare namespace gapi.client {
|
|
|
667
673
|
balancingMode?: string;
|
|
668
674
|
/** A multiplier applied to the backend's target capacity of its balancing mode. The default value is 1, which means the group serves up to 100% of its configured capacity (depending on balancingMode). A setting of 0 means the group is completely drained, offering 0% of its available capacity. The valid ranges are 0.0 and [0.1,1.0]. You cannot configure a setting larger than 0 and smaller than 0.1. You cannot configure a setting of 0 when there is only one backend attached to the backend service. Not available with backends that don't support using a balancingMode. This includes backends such as global internet NEGs, regional serverless NEGs, and PSC NEGs. */
|
|
669
675
|
capacityScaler?: number;
|
|
676
|
+
/** List of custom metrics that are used for CUSTOM_METRICS BalancingMode and WEIGHTED_ROUND_ROBIN BackendService locality_lb_policy. */
|
|
677
|
+
customMetrics?: BackendCustomMetric[];
|
|
670
678
|
/** An optional description of this resource. Provide this property when you create the resource. */
|
|
671
679
|
description?: string;
|
|
672
680
|
/** This field designates whether this is a failover backend. More than one failover backend can be configured for a given BackendService. */
|
|
@@ -788,6 +796,14 @@ declare namespace gapi.client {
|
|
|
788
796
|
message?: string;
|
|
789
797
|
};
|
|
790
798
|
}
|
|
799
|
+
interface BackendCustomMetric {
|
|
800
|
+
/** If true, the metric data is collected and reported to Cloud Monitoring, but is not used for load balancing. */
|
|
801
|
+
dryRun?: boolean;
|
|
802
|
+
/** Optional parameter to define a target utilization for the Custom Metrics balancing mode. The valid range is [0.0, 1.0]. */
|
|
803
|
+
maxUtilization?: number;
|
|
804
|
+
/** Name of a custom utilization signal. The name must be 1-24 characters long, and comply with RFC1035. Specifically, the name must be 1-24 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. For usage guidelines, see Custom Metrics balancing mode. This field can only be used for a global or regional backend service with the loadBalancingScheme set to EXTERNAL_MANAGED, INTERNAL_MANAGED INTERNAL_SELF_MANAGED. */
|
|
805
|
+
name?: string;
|
|
806
|
+
}
|
|
791
807
|
interface BackendService {
|
|
792
808
|
/** Lifetime of cookies in seconds. This setting is applicable to Application Load Balancers and Traffic Director and requires GENERATED_COOKIE or HTTP_COOKIE session affinity. If set to 0, the cookie is non-persistent and lasts only until the end of the browser session (or equivalent). The maximum allowed value is two weeks (1,209,600). Not supported when the backend service is referenced by a URL map that is bound to target gRPC proxy that has validateForProxyless field set to true. */
|
|
793
809
|
affinityCookieTtlSec?: number;
|
|
@@ -882,6 +898,7 @@ declare namespace gapi.client {
|
|
|
882
898
|
subsetting?: Subsetting;
|
|
883
899
|
/** The backend service timeout has a different meaning depending on the type of load balancer. For more information see, Backend service settings. The default is 30 seconds. The full range of timeout values allowed goes from 1 through 2,147,483,647 seconds. This value can be overridden in the PathMatcher configuration of the UrlMap that references this backend service. Not supported when the backend service is referenced by a URL map that is bound to target gRPC proxy that has validateForProxyless field set to true. Instead, use maxStreamDuration. */
|
|
884
900
|
timeoutSec?: number;
|
|
901
|
+
/** [Output Only] List of resources referencing given backend service. */
|
|
885
902
|
usedBy?: BackendServiceUsedBy[];
|
|
886
903
|
/** The network scope of the backends that can be added to the backend service. This field can be either GLOBAL_VPC_NETWORK or REGIONAL_VPC_NETWORK. A backend service with the VPC scope set to GLOBAL_VPC_NETWORK is only allowed to have backends in global VPC networks. When the VPC scope is set to REGIONAL_VPC_NETWORK the backend service is only allowed to have backends in regional networks in the same scope as the backend service. Note: if not specified then GLOBAL_VPC_NETWORK will be used. */
|
|
887
904
|
vpcNetworkScope?: string;
|
|
@@ -1130,6 +1147,7 @@ declare namespace gapi.client {
|
|
|
1130
1147
|
};
|
|
1131
1148
|
}
|
|
1132
1149
|
interface BackendServiceUsedBy {
|
|
1150
|
+
/** [Output Only] Server-defined URL for resources referencing given BackendService like UrlMaps, TargetTcpProxies, TargetSslProxies and ForwardingRule. */
|
|
1133
1151
|
reference?: string;
|
|
1134
1152
|
}
|
|
1135
1153
|
interface BfdPacket {
|
|
@@ -1350,6 +1368,8 @@ declare namespace gapi.client {
|
|
|
1350
1368
|
category?: string;
|
|
1351
1369
|
/** [Output Only] Creation timestamp in RFC3339 text format. */
|
|
1352
1370
|
creationTimestamp?: string;
|
|
1371
|
+
/** [Input Only] Optional, specifies the CUD end time requested by the customer in RFC3339 text format. Needed when the customer wants CUD's end date is later than the start date + term duration. */
|
|
1372
|
+
customEndTimestamp?: string;
|
|
1353
1373
|
/** An optional description of this resource. Provide this property when you create the resource. */
|
|
1354
1374
|
description?: string;
|
|
1355
1375
|
/** [Output Only] Commitment end time in RFC3339 text format. */
|
|
@@ -1448,6 +1468,8 @@ declare namespace gapi.client {
|
|
|
1448
1468
|
interface CommitmentResourceStatus {
|
|
1449
1469
|
/** [Output Only] An optional, contains all the needed information of cancellation. */
|
|
1450
1470
|
cancellationInformation?: CommitmentResourceStatusCancellationInformation;
|
|
1471
|
+
/** [Output Only] Indicates the end time of customer's eligibility to send custom term requests in RFC3339 text format. Term extension requests that (not the end time in the request) after this time will be rejected. */
|
|
1472
|
+
customTermEligibilityEndTimestamp?: string;
|
|
1451
1473
|
}
|
|
1452
1474
|
interface CommitmentResourceStatusCancellationInformation {
|
|
1453
1475
|
/** [Output Only] An optional amount of CUDs canceled so far in the last 365 days. */
|
|
@@ -3731,7 +3753,7 @@ declare namespace gapi.client {
|
|
|
3731
3753
|
allInstancesConfig?: InstanceGroupManagerAllInstancesConfig;
|
|
3732
3754
|
/** The autohealing policy for this managed instance group. You can specify only one value. */
|
|
3733
3755
|
autoHealingPolicies?: InstanceGroupManagerAutoHealingPolicy[];
|
|
3734
|
-
/** The base instance name to
|
|
3756
|
+
/** The base instance name is a prefix that you want to attach to the names of all VMs in a MIG. The maximum character length is 58 and the name must comply with RFC1035 format. When a VM is created in the group, the MIG appends a hyphen and a random four-character string to the base instance name. If you want the MIG to assign sequential numbers instead of a random string, then end the base instance name with a hyphen followed by one or more hash symbols. The hash symbols indicate the number of digits. For example, a base instance name of "vm-###" results in "vm-001" as a VM name. @pattern [a-z](([-a-z0-9]{0,57})|([-a-z0-9]{0,52}-#{1,10}(\\[[0-9]{1,10}\\])?)) */
|
|
3735
3757
|
baseInstanceName?: string;
|
|
3736
3758
|
/** [Output Only] The creation timestamp for this managed instance group in RFC3339 text format. */
|
|
3737
3759
|
creationTimestamp?: string;
|
|
@@ -3909,6 +3931,8 @@ declare namespace gapi.client {
|
|
|
3909
3931
|
forceUpdateOnRepair?: string;
|
|
3910
3932
|
/** The configuration for metadata based readiness signal sent by the instance during initialization when stopping / suspending an instance. The Instance Group Manager will wait for a signal that indicates successful initialization before stopping / suspending an instance. If a successful readiness signal is not sent before timeout, the corresponding instance will not be stopped / suspended. Instead, an error will be visible in the lastAttempt.errors field of the managed instance in the listmanagedinstances method. If metadataBasedReadinessSignal.timeoutSec is unset, the Instance Group Manager will directly proceed to suspend / stop instances, skipping initialization on them. */
|
|
3911
3933
|
metadataBasedReadinessSignal?: InstanceGroupManagerInstanceLifecyclePolicyMetadataBasedReadinessSignal;
|
|
3934
|
+
/** The action that a MIG performs on an unhealthy VM. A VM is marked as unhealthy when the application running on that VM fails a health check. Valid values are: - DEFAULT_ACTION (default): The MIG performs the same action as specified in the instanceLifecyclePolicy.defaultActionOnFailure field. If the defaultActionOnFailure field is set to REPAIR, then the MIG repairs unhealthy VMs. If the defaultActionOnFailure field is set to DO_NOTHING, then the MIG doesn't repair unhealthy VMs. - REPAIR: The MIG repairs unhealthy VMs by recreating it. - DO_NOTHING: The MIG doesn't repair unhealthy VMs. For more information, see About repairing VMs in a MIG. */
|
|
3935
|
+
onFailedHealthCheck?: string;
|
|
3912
3936
|
}
|
|
3913
3937
|
interface InstanceGroupManagerInstanceLifecyclePolicyMetadataBasedReadinessSignal {
|
|
3914
3938
|
/** The number of seconds to wait for a readiness signal during initialization before timing out. */
|
|
@@ -4412,7 +4436,7 @@ declare namespace gapi.client {
|
|
|
4412
4436
|
keyRevocationActionType?: string;
|
|
4413
4437
|
/** Labels to apply to instances that are created from these properties. */
|
|
4414
4438
|
labels?: {[P in string]: string};
|
|
4415
|
-
/** The machine type to use for instances that are created from these properties. This field only
|
|
4439
|
+
/** The machine type to use for instances that are created from these properties. This field only accepts a machine type name, for example `n2-standard-4`. If you use the machine type full or partial URL, for example `projects/my-l7ilb-project/zones/us-central1-a/machineTypes/n2-standard-4`, the request will result in an `INTERNAL_ERROR`. */
|
|
4416
4440
|
machineType?: string;
|
|
4417
4441
|
/** The metadata key/value pairs to assign to instances that are created from these properties. These pairs can consist of custom metadata or predefined keys. See Project and instance metadata for more information. */
|
|
4418
4442
|
metadata?: Metadata;
|
|
@@ -5918,6 +5942,72 @@ declare namespace gapi.client {
|
|
|
5918
5942
|
/** The whole units of the amount. For example if `currencyCode` is `"USD"`, then 1 unit is one US dollar. */
|
|
5919
5943
|
units?: string;
|
|
5920
5944
|
}
|
|
5945
|
+
interface MultiMig {
|
|
5946
|
+
/** [Output Only] Creation timestamp in RFC3339 text format. */
|
|
5947
|
+
creationTimestamp?: string;
|
|
5948
|
+
/** An optional description of this resource. Provide this property when you create the resource. */
|
|
5949
|
+
description?: string;
|
|
5950
|
+
/** [Output Only] The unique identifier for the resource. This identifier is defined by the server. */
|
|
5951
|
+
id?: string;
|
|
5952
|
+
/** [Output Only] Type of the resource. Always compute#multiMig for MultiMIGs. */
|
|
5953
|
+
kind?: string;
|
|
5954
|
+
locationPolicy?: MultiMigLocationPolicy;
|
|
5955
|
+
/** Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. */
|
|
5956
|
+
name?: string;
|
|
5957
|
+
/** User-provided names for Parts of MultiMIG and the Parts themselves. */
|
|
5958
|
+
parts?: {[P in string]: MultiMigPart};
|
|
5959
|
+
/** [Output Only] URL of the region where the resource resides. Only applicable for regional resources. You must specify this field as part of the HTTP request URL. It is not settable as a field in the request body. */
|
|
5960
|
+
region?: string;
|
|
5961
|
+
/** Policy for handling provisioning and other scheduling-related events. */
|
|
5962
|
+
schedulingPolicy?: MultiMigSchedulingPolicy;
|
|
5963
|
+
/** [Output only] Server-defined URL for the resource. */
|
|
5964
|
+
selfLink?: string;
|
|
5965
|
+
/** [Output Only] Server-defined URL for this resource with the resource id. */
|
|
5966
|
+
selfLinkWithId?: string;
|
|
5967
|
+
}
|
|
5968
|
+
interface MultiMigLocationPolicy {
|
|
5969
|
+
/** List of zones where MIGs will be provisioned. Should be valid RFC1035 name */
|
|
5970
|
+
provisioningZones?: string[];
|
|
5971
|
+
}
|
|
5972
|
+
interface MultiMigPart {
|
|
5973
|
+
/** Link to an existing InstanceGroupManager that will be adopted by a MultiMIG. */
|
|
5974
|
+
instanceGroupManager?: string;
|
|
5975
|
+
/** InstanceGroupManager to be created by the multiMig */
|
|
5976
|
+
instanceGroupManagerProperties?: InstanceGroupManager;
|
|
5977
|
+
}
|
|
5978
|
+
interface MultiMigSchedulingPolicy {
|
|
5979
|
+
/** How provisioning of MIGs should be scheduled (coordinated or not) */
|
|
5980
|
+
provisioning?: string;
|
|
5981
|
+
}
|
|
5982
|
+
interface MultiMigsList {
|
|
5983
|
+
etag?: string;
|
|
5984
|
+
/** Unique identifier for the resource; defined by the server. */
|
|
5985
|
+
id?: string;
|
|
5986
|
+
/** A list of MultiMig resources. */
|
|
5987
|
+
items?: MultiMig[];
|
|
5988
|
+
/** Type of resource. */
|
|
5989
|
+
kind?: string;
|
|
5990
|
+
/** This token allows you to get the next page of results for maxResults, use the nextPageToken as a value for the query parameter pageToken in the next list request. Subsequent list requests will have their own nextPageToken to continue paging through the results. */
|
|
5991
|
+
nextPageToken?: string;
|
|
5992
|
+
/** [Output only] Server-defined URL for this resource. */
|
|
5993
|
+
selfLink?: string;
|
|
5994
|
+
/** [Output only] Unreachable resources. */
|
|
5995
|
+
unreachables?: string[];
|
|
5996
|
+
/** Informational warning message. */
|
|
5997
|
+
warning?: {
|
|
5998
|
+
/** [Output Only] A warning code, if applicable. For example, Compute Engine returns NO_RESULTS_ON_PAGE if there are no results in the response. */
|
|
5999
|
+
code?: string;
|
|
6000
|
+
/** [Output Only] Metadata about this warning in key: value format. For example: "data": [ { "key": "scope", "value": "zones/us-east1-d" } */
|
|
6001
|
+
data?: Array<{
|
|
6002
|
+
/** [Output Only] A key that provides more detail on the warning being returned. For example, for warnings where there are no results in a list request for a particular zone, this key might be scope and the key value might be the zone name. Other examples might be a key indicating a deprecated resource and a suggested replacement, or a warning about invalid network settings (for example, if an instance attempts to perform IP forwarding but is not enabled for IP forwarding). */
|
|
6003
|
+
key?: string;
|
|
6004
|
+
/** [Output Only] A warning data value corresponding to the key. */
|
|
6005
|
+
value?: string;
|
|
6006
|
+
}>;
|
|
6007
|
+
/** [Output Only] A human-readable description of the warning code. */
|
|
6008
|
+
message?: string;
|
|
6009
|
+
};
|
|
6010
|
+
}
|
|
5921
6011
|
interface MutualTls {
|
|
5922
6012
|
/** Specifies if the server TLS is configured to be strict or permissive. This field can be set to one of the following: STRICT: Client certificate must be presented, connection is in TLS. PERMISSIVE: Client certificate can be omitted, connection can be either plaintext or TLS. */
|
|
5923
6013
|
mode?: string;
|
|
@@ -6189,8 +6279,6 @@ declare namespace gapi.client {
|
|
|
6189
6279
|
annotations?: {[P in string]: string};
|
|
6190
6280
|
/** Represents the port number to which PSC consumer sends packets. Only valid for network endpoint groups created with GCE_VM_IP_PORTMAP endpoint type. */
|
|
6191
6281
|
clientDestinationPort?: number;
|
|
6192
|
-
/** Represents the port number to which PSC consumer sends packets. Only valid for network endpoint groups created with CLIENT_PORT_PER_ENDPOINT mapping mode. */
|
|
6193
|
-
clientPort?: number;
|
|
6194
6282
|
/** Optional fully qualified domain name of network endpoint. This can only be specified when NetworkEndpointGroup.network_endpoint_type is NON_GCP_FQDN_PORT. */
|
|
6195
6283
|
fqdn?: string;
|
|
6196
6284
|
/** The name or a URL of VM instance of this network endpoint. This field is required for network endpoints of type GCE_VM_IP and GCE_VM_IP_PORT. The instance must be in the same zone of network endpoint group (for zonal NEGs) or in the zone within the region of the NEG (for regional NEGs). If the ipAddress is specified, it must belongs to the VM instance. The name must be 1-63 characters long, and comply with RFC1035 or be a valid URL pointing to an existing instance. */
|
|
@@ -6209,8 +6297,6 @@ declare namespace gapi.client {
|
|
|
6209
6297
|
annotations?: {[P in string]: string};
|
|
6210
6298
|
/** Only valid when networkEndpointType is SERVERLESS. Only one of cloudRun, appEngine or cloudFunction may be set. */
|
|
6211
6299
|
appEngine?: NetworkEndpointGroupAppEngine;
|
|
6212
|
-
/** Only valid when networkEndpointType is GCE_VM_IP_PORT and the NEG is regional. */
|
|
6213
|
-
clientPortMappingMode?: string;
|
|
6214
6300
|
/** Only valid when networkEndpointType is SERVERLESS. Only one of cloudRun, appEngine or cloudFunction may be set. */
|
|
6215
6301
|
cloudFunction?: NetworkEndpointGroupCloudFunction;
|
|
6216
6302
|
/** Only valid when networkEndpointType is SERVERLESS. Only one of cloudRun, appEngine or cloudFunction may be set. */
|
|
@@ -8641,6 +8727,8 @@ declare namespace gapi.client {
|
|
|
8641
8727
|
kind?: string;
|
|
8642
8728
|
/** The name of the resource, provided by the client when initially creating the resource. The resource name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. */
|
|
8643
8729
|
name?: string;
|
|
8730
|
+
/** Specify the reservation sharing policy. If unspecified, the reservation will not be shared with Google Cloud managed services. */
|
|
8731
|
+
reservationSharingPolicy?: AllocationReservationSharingPolicy;
|
|
8644
8732
|
/** Resource policies to be added to this reservation. The key is defined by user, and the value is resource policy url. This is to define placement policy with reservation. */
|
|
8645
8733
|
resourcePolicies?: {[P in string]: string};
|
|
8646
8734
|
/** [Output Only] Status information for Reservation resource. */
|
|
@@ -8805,6 +8893,7 @@ declare namespace gapi.client {
|
|
|
8805
8893
|
status?: string;
|
|
8806
8894
|
/** Resource policy applicable to VMs for infrastructure maintenance. */
|
|
8807
8895
|
vmMaintenancePolicy?: ResourcePolicyVmMaintenancePolicy;
|
|
8896
|
+
workloadPolicy?: ResourcePolicyWorkloadPolicy;
|
|
8808
8897
|
}
|
|
8809
8898
|
interface ResourcePolicyAggregatedList {
|
|
8810
8899
|
etag?: string;
|
|
@@ -8974,6 +9063,9 @@ declare namespace gapi.client {
|
|
|
8974
9063
|
/** Time within the window to start the operations. It must be in format "HH:MM", where HH : [00-23] and MM : [00-00] GMT. */
|
|
8975
9064
|
startTime?: string;
|
|
8976
9065
|
}
|
|
9066
|
+
interface ResourcePolicyWorkloadPolicy {
|
|
9067
|
+
type?: string;
|
|
9068
|
+
}
|
|
8977
9069
|
interface ResourceStatus {
|
|
8978
9070
|
/** [Output Only] Contains last termination details why the instance was terminated. */
|
|
8979
9071
|
lastInstanceTerminationDetails?: ResourceStatusLastInstanceTerminationDetails;
|
|
@@ -8993,7 +9085,7 @@ declare namespace gapi.client {
|
|
|
8993
9085
|
terminationReason?: string;
|
|
8994
9086
|
}
|
|
8995
9087
|
interface ResourceStatusScheduling {
|
|
8996
|
-
/** Specifies the availability domain
|
|
9088
|
+
/** Specifies the availability domain to place the instance in. The value must be a number between 1 and the number of availability domains specified in the spread placement policy attached to the instance. */
|
|
8997
9089
|
availabilityDomain?: number;
|
|
8998
9090
|
/** Time in future when the instance will be terminated in RFC3339 text format. */
|
|
8999
9091
|
terminationTimestamp?: string;
|
|
@@ -9048,7 +9140,7 @@ declare namespace gapi.client {
|
|
|
9048
9140
|
nextHopGateway?: string;
|
|
9049
9141
|
/** [Output Only] The full resource name of the Network Connectivity Center hub that will handle matching packets. */
|
|
9050
9142
|
nextHopHub?: string;
|
|
9051
|
-
/** The URL to a forwarding rule of type loadBalancingScheme=INTERNAL that should handle matching packets or the IP address of the forwarding Rule. For example, the following are all valid URLs: -
|
|
9143
|
+
/** The URL to a forwarding rule of type loadBalancingScheme=INTERNAL that should handle matching packets or the IP address of the forwarding Rule. For example, the following are all valid URLs: - https://www.googleapis.com/compute/v1/projects/project/regions/region /forwardingRules/forwardingRule - regions/region/forwardingRules/forwardingRule If an IP address is provided, must specify an IPv4 address in dot-decimal notation or an IPv6 address in RFC 4291 format. For example, the following are all valid IP addresses: - 10.128.0.56 - 2001:db8::2d9:51:0:0 - 2001:db8:0:0:2d9:51:0:0 IPv6 addresses will be displayed using RFC 5952 compressed format (e.g. 2001:db8::2d9:51:0:0). Should never be an IPv4-mapped IPv6 address. */
|
|
9052
9144
|
nextHopIlb?: string;
|
|
9053
9145
|
/** The URL to an instance that should handle matching packets. You can specify this as a full or partial URL. For example: https://www.googleapis.com/compute/v1/projects/project/zones/zone/instances/ */
|
|
9054
9146
|
nextHopInstance?: string;
|
|
@@ -9398,7 +9490,7 @@ declare namespace gapi.client {
|
|
|
9398
9490
|
action?: RouterNatRuleAction;
|
|
9399
9491
|
/** An optional description of this rule. */
|
|
9400
9492
|
description?: string;
|
|
9401
|
-
/** CEL expression that specifies the match condition that egress traffic from a VM is evaluated against. If it evaluates to true, the corresponding `action` is enforced. The following examples are valid match expressions for public NAT:
|
|
9493
|
+
/** CEL expression that specifies the match condition that egress traffic from a VM is evaluated against. If it evaluates to true, the corresponding `action` is enforced. The following examples are valid match expressions for public NAT: `inIpRange(destination.ip, '1.1.0.0/16') || inIpRange(destination.ip, '2.2.0.0/16')` `destination.ip == '1.1.0.1' || destination.ip == '8.8.8.8'` The following example is a valid match expression for private NAT: `nexthop.hub == '//networkconnectivity.googleapis.com/projects/my-project/locations/global/hubs/hub-1'` */
|
|
9402
9494
|
match?: string;
|
|
9403
9495
|
/** An integer uniquely identifying a rule in the list. The rule number must be a positive value between 0 and 65000, and must be unique among rules within a NAT. */
|
|
9404
9496
|
ruleNumber?: number;
|
|
@@ -9541,9 +9633,9 @@ declare namespace gapi.client {
|
|
|
9541
9633
|
};
|
|
9542
9634
|
}
|
|
9543
9635
|
interface RouterStatus {
|
|
9544
|
-
/**
|
|
9636
|
+
/** A list of the best dynamic routes for this Cloud Router's Virtual Private Cloud (VPC) network in the same region as this Cloud Router. Lists all of the best routes per prefix that are programmed into this region's VPC data plane. When global dynamic routing mode is turned on in the VPC network, this list can include cross-region dynamic routes from Cloud Routers in other regions. */
|
|
9545
9637
|
bestRoutes?: Route[];
|
|
9546
|
-
/**
|
|
9638
|
+
/** A list of the best BGP routes learned by this Cloud Router. It is possible that routes listed might not be programmed into the data plane, if the Google Cloud control plane finds a more optimal route for a prefix than a route learned by this Cloud Router. */
|
|
9547
9639
|
bestRoutesForRouter?: Route[];
|
|
9548
9640
|
bgpPeerStatus?: RouterStatusBgpPeerStatus[];
|
|
9549
9641
|
natStatus?: RouterStatusNatStatus[];
|
|
@@ -9701,7 +9793,7 @@ declare namespace gapi.client {
|
|
|
9701
9793
|
interface Scheduling {
|
|
9702
9794
|
/** Specifies whether the instance should be automatically restarted if it is terminated by Compute Engine (not terminated by a user). You can only set the automatic restart option for standard instances. Preemptible instances cannot be automatically restarted. By default, this is set to true so an instance is automatically restarted if it is terminated by Compute Engine. */
|
|
9703
9795
|
automaticRestart?: boolean;
|
|
9704
|
-
/** Specifies the availability domain
|
|
9796
|
+
/** Specifies the availability domain to place the instance in. The value must be a number between 1 and the number of availability domains specified in the spread placement policy attached to the instance. */
|
|
9705
9797
|
availabilityDomain?: number;
|
|
9706
9798
|
/** Current number of vCPUs available for VM. 0 or unset means default vCPUs of the current machine type. */
|
|
9707
9799
|
currentCpus?: number;
|
|
@@ -10996,7 +11088,7 @@ declare namespace gapi.client {
|
|
|
10996
11088
|
name?: string;
|
|
10997
11089
|
/** Provisioning type of the performance-related parameters of the pool, such as throughput and IOPS. */
|
|
10998
11090
|
performanceProvisioningType?: string;
|
|
10999
|
-
/** Size, in GiB, of the storage pool. */
|
|
11091
|
+
/** Size, in GiB, of the storage pool. For more information about the size limits, see https://cloud.google.com/compute/docs/disks/storage-pools. */
|
|
11000
11092
|
poolProvisionedCapacityGb?: string;
|
|
11001
11093
|
/** Provisioned IOPS of the storage pool. Only relevant if the storage pool type is hyperdisk-balanced. */
|
|
11002
11094
|
poolProvisionedIops?: string;
|
|
@@ -11151,7 +11243,7 @@ declare namespace gapi.client {
|
|
|
11151
11243
|
numberOfDisks?: string;
|
|
11152
11244
|
/** [Output Only] Space used by data stored in disks within the storage pool (in bytes). This will reflect the total number of bytes written to the disks in the pool, in contrast to the capacity of those disks. */
|
|
11153
11245
|
poolUsedCapacityBytes?: string;
|
|
11154
|
-
/** Sum of all the disks' provisioned IOPS, minus some amount that is allowed per disk that is not counted towards pool's IOPS capacity. */
|
|
11246
|
+
/** [Output Only] Sum of all the disks' provisioned IOPS, minus some amount that is allowed per disk that is not counted towards pool's IOPS capacity. For more information, see https://cloud.google.com/compute/docs/disks/storage-pools. */
|
|
11155
11247
|
poolUsedIops?: string;
|
|
11156
11248
|
/** [Output Only] Sum of all the disks' provisioned throughput in MB/s. */
|
|
11157
11249
|
poolUsedThroughput?: string;
|
|
@@ -12679,7 +12771,7 @@ declare namespace gapi.client {
|
|
|
12679
12771
|
region?: string;
|
|
12680
12772
|
/** [Output Only] Server-defined URL for the resource. */
|
|
12681
12773
|
selfLink?: string;
|
|
12682
|
-
/** The stack type for this VPN gateway to identify the IP protocols that are enabled. Possible values are: IPV4_ONLY, IPV4_IPV6. If not specified, IPV4_ONLY
|
|
12774
|
+
/** The stack type for this VPN gateway to identify the IP protocols that are enabled. Possible values are: IPV4_ONLY, IPV4_IPV6, IPV6_ONLY. If not specified, IPV4_ONLY is used if the gateway IP version is IPV4, or IPV4_IPV6 if the gateway IP version is IPV6. */
|
|
12683
12775
|
stackType?: string;
|
|
12684
12776
|
/** The list of VPN interfaces associated with this VPN gateway. */
|
|
12685
12777
|
vpnInterfaces?: VpnGatewayVpnGatewayInterface[];
|
|
@@ -43127,6 +43219,187 @@ declare namespace gapi.client {
|
|
|
43127
43219
|
body: TestPermissionsRequest
|
|
43128
43220
|
): Request<TestPermissionsResponse>;
|
|
43129
43221
|
}
|
|
43222
|
+
interface RegionMultiMigsResource {
|
|
43223
|
+
/** Deletes a regional multiMIG in the specified project. */
|
|
43224
|
+
delete(request?: {
|
|
43225
|
+
/** V1 error format. */
|
|
43226
|
+
'$.xgafv'?: string;
|
|
43227
|
+
/** OAuth access token. */
|
|
43228
|
+
access_token?: string;
|
|
43229
|
+
/** Data format for response. */
|
|
43230
|
+
alt?: string;
|
|
43231
|
+
/** JSONP */
|
|
43232
|
+
callback?: string;
|
|
43233
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
43234
|
+
fields?: string;
|
|
43235
|
+
/** 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. */
|
|
43236
|
+
key?: string;
|
|
43237
|
+
/** Name of the multiMIG to delete. */
|
|
43238
|
+
multiMig: string;
|
|
43239
|
+
/** OAuth 2.0 token for the current user. */
|
|
43240
|
+
oauth_token?: string;
|
|
43241
|
+
/** Returns response with indentations and line breaks. */
|
|
43242
|
+
prettyPrint?: boolean;
|
|
43243
|
+
/** Project ID for this request. */
|
|
43244
|
+
project: string;
|
|
43245
|
+
/** 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. */
|
|
43246
|
+
quotaUser?: string;
|
|
43247
|
+
/** Name of the region for this request. */
|
|
43248
|
+
region: string;
|
|
43249
|
+
/** An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000). */
|
|
43250
|
+
requestId?: string;
|
|
43251
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
43252
|
+
upload_protocol?: string;
|
|
43253
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
43254
|
+
uploadType?: string;
|
|
43255
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
43256
|
+
userIp?: string;
|
|
43257
|
+
}): Request<Operation>;
|
|
43258
|
+
/** Returns the specified MultiMIG resource. */
|
|
43259
|
+
get(request?: {
|
|
43260
|
+
/** V1 error format. */
|
|
43261
|
+
'$.xgafv'?: string;
|
|
43262
|
+
/** OAuth access token. */
|
|
43263
|
+
access_token?: string;
|
|
43264
|
+
/** Data format for response. */
|
|
43265
|
+
alt?: string;
|
|
43266
|
+
/** JSONP */
|
|
43267
|
+
callback?: string;
|
|
43268
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
43269
|
+
fields?: string;
|
|
43270
|
+
/** 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. */
|
|
43271
|
+
key?: string;
|
|
43272
|
+
/** Name of the MultiMig resource to return. */
|
|
43273
|
+
multiMig: string;
|
|
43274
|
+
/** OAuth 2.0 token for the current user. */
|
|
43275
|
+
oauth_token?: string;
|
|
43276
|
+
/** Returns response with indentations and line breaks. */
|
|
43277
|
+
prettyPrint?: boolean;
|
|
43278
|
+
/** Project ID for this request. */
|
|
43279
|
+
project: string;
|
|
43280
|
+
/** 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. */
|
|
43281
|
+
quotaUser?: string;
|
|
43282
|
+
/** Name of the region for this request. */
|
|
43283
|
+
region: string;
|
|
43284
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
43285
|
+
upload_protocol?: string;
|
|
43286
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
43287
|
+
uploadType?: string;
|
|
43288
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
43289
|
+
userIp?: string;
|
|
43290
|
+
}): Request<MultiMig>;
|
|
43291
|
+
/** Creates a regional multiMIG in the specified project. */
|
|
43292
|
+
insert(request: {
|
|
43293
|
+
/** V1 error format. */
|
|
43294
|
+
'$.xgafv'?: string;
|
|
43295
|
+
/** OAuth access token. */
|
|
43296
|
+
access_token?: string;
|
|
43297
|
+
/** Data format for response. */
|
|
43298
|
+
alt?: string;
|
|
43299
|
+
/** JSONP */
|
|
43300
|
+
callback?: string;
|
|
43301
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
43302
|
+
fields?: string;
|
|
43303
|
+
/** 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. */
|
|
43304
|
+
key?: string;
|
|
43305
|
+
/** OAuth 2.0 token for the current user. */
|
|
43306
|
+
oauth_token?: string;
|
|
43307
|
+
/** Returns response with indentations and line breaks. */
|
|
43308
|
+
prettyPrint?: boolean;
|
|
43309
|
+
/** Project ID for this request. */
|
|
43310
|
+
project: string;
|
|
43311
|
+
/** 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. */
|
|
43312
|
+
quotaUser?: string;
|
|
43313
|
+
/** Name of the region for this request. */
|
|
43314
|
+
region: string;
|
|
43315
|
+
/** An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000). */
|
|
43316
|
+
requestId?: string;
|
|
43317
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
43318
|
+
upload_protocol?: string;
|
|
43319
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
43320
|
+
uploadType?: string;
|
|
43321
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
43322
|
+
userIp?: string;
|
|
43323
|
+
/** Request body */
|
|
43324
|
+
resource: MultiMig;
|
|
43325
|
+
}): Request<Operation>;
|
|
43326
|
+
insert(
|
|
43327
|
+
request: {
|
|
43328
|
+
/** V1 error format. */
|
|
43329
|
+
'$.xgafv'?: string;
|
|
43330
|
+
/** OAuth access token. */
|
|
43331
|
+
access_token?: string;
|
|
43332
|
+
/** Data format for response. */
|
|
43333
|
+
alt?: string;
|
|
43334
|
+
/** JSONP */
|
|
43335
|
+
callback?: string;
|
|
43336
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
43337
|
+
fields?: string;
|
|
43338
|
+
/** 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. */
|
|
43339
|
+
key?: string;
|
|
43340
|
+
/** OAuth 2.0 token for the current user. */
|
|
43341
|
+
oauth_token?: string;
|
|
43342
|
+
/** Returns response with indentations and line breaks. */
|
|
43343
|
+
prettyPrint?: boolean;
|
|
43344
|
+
/** Project ID for this request. */
|
|
43345
|
+
project: string;
|
|
43346
|
+
/** 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. */
|
|
43347
|
+
quotaUser?: string;
|
|
43348
|
+
/** Name of the region for this request. */
|
|
43349
|
+
region: string;
|
|
43350
|
+
/** An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000). */
|
|
43351
|
+
requestId?: string;
|
|
43352
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
43353
|
+
upload_protocol?: string;
|
|
43354
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
43355
|
+
uploadType?: string;
|
|
43356
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
43357
|
+
userIp?: string;
|
|
43358
|
+
},
|
|
43359
|
+
body: MultiMig
|
|
43360
|
+
): Request<Operation>;
|
|
43361
|
+
/** Retrieves a list of MultiMIGs in a project and region. */
|
|
43362
|
+
list(request?: {
|
|
43363
|
+
/** V1 error format. */
|
|
43364
|
+
'$.xgafv'?: string;
|
|
43365
|
+
/** OAuth access token. */
|
|
43366
|
+
access_token?: string;
|
|
43367
|
+
/** Data format for response. */
|
|
43368
|
+
alt?: string;
|
|
43369
|
+
/** JSONP */
|
|
43370
|
+
callback?: string;
|
|
43371
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
43372
|
+
fields?: string;
|
|
43373
|
+
/** A filter expression that filters resources listed in the response. Most Compute resources support two types of filter expressions: expressions that support regular expressions and expressions that follow API improvement proposal AIP-160. These two types of filter expressions cannot be mixed in one request. If you want to use AIP-160, your expression must specify the field name, an operator, and the value that you want to use for filtering. The value must be a string, a number, or a boolean. The operator must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`. For example, if you are filtering Compute Engine instances, you can exclude instances named `example-instance` by specifying `name != example-instance`. The `:*` comparison can be used to test whether a key has been defined. For example, to find all objects with `owner` label use: ``` labels.owner:* ``` You can also filter nested fields. For example, you could specify `scheduling.automaticRestart = false` to include instances only if they are not scheduled for automatic restarts. You can use filtering on nested fields to filter based on resource labels. To filter on multiple expressions, provide each separate expression within parentheses. For example: ``` (scheduling.automaticRestart = true) (cpuPlatform = "Intel Skylake") ``` By default, each expression is an `AND` expression. However, you can include `AND` and `OR` expressions explicitly. For example: ``` (cpuPlatform = "Intel Skylake") OR (cpuPlatform = "Intel Broadwell") AND (scheduling.automaticRestart = true) ``` If you want to use a regular expression, use the `eq` (equal) or `ne` (not equal) operator against a single un-parenthesized expression with or without quotes or against multiple parenthesized expressions. Examples: `fieldname eq unquoted literal` `fieldname eq 'single quoted literal'` `fieldname eq "double quoted literal"` `(fieldname1 eq literal) (fieldname2 ne "literal")` The literal value is interpreted as a regular expression using Google RE2 library syntax. The literal value must match the entire field. For example, to filter for instances that do not end with name "instance", you would use `name ne .*instance`. You cannot combine constraints on multiple fields using regular expressions. */
|
|
43374
|
+
filter?: string;
|
|
43375
|
+
/** 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. */
|
|
43376
|
+
key?: string;
|
|
43377
|
+
/** The maximum number of results per page that should be returned. If the number of available results is larger than `maxResults`, Compute Engine returns a `nextPageToken` that can be used to get the next page of results in subsequent list requests. Acceptable values are `0` to `500`, inclusive. (Default: `500`) */
|
|
43378
|
+
maxResults?: number;
|
|
43379
|
+
/** OAuth 2.0 token for the current user. */
|
|
43380
|
+
oauth_token?: string;
|
|
43381
|
+
/** Sorts list results by a certain order. By default, results are returned in alphanumerical order based on the resource name. You can also sort results in descending order based on the creation timestamp using `orderBy="creationTimestamp desc"`. This sorts results based on the `creationTimestamp` field in reverse chronological order (newest result first). Use this to sort resources like operations so that the newest operation is returned first. Currently, only sorting by `name` or `creationTimestamp desc` is supported. */
|
|
43382
|
+
orderBy?: string;
|
|
43383
|
+
/** Specifies a page token to use. Set `pageToken` to the `nextPageToken` returned by a previous list request to get the next page of results. */
|
|
43384
|
+
pageToken?: string;
|
|
43385
|
+
/** Returns response with indentations and line breaks. */
|
|
43386
|
+
prettyPrint?: boolean;
|
|
43387
|
+
/** Project ID for this request. */
|
|
43388
|
+
project: string;
|
|
43389
|
+
/** 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. */
|
|
43390
|
+
quotaUser?: string;
|
|
43391
|
+
/** Name of the region for this request. */
|
|
43392
|
+
region: string;
|
|
43393
|
+
/** Opt-in for partial success behavior which provides partial results in case of failure. The default value is false. For example, when partial success behavior is enabled, aggregatedList for a single zone scope either returns all resources in the zone or no resources, with an error code. */
|
|
43394
|
+
returnPartialSuccess?: boolean;
|
|
43395
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
43396
|
+
upload_protocol?: string;
|
|
43397
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
43398
|
+
uploadType?: string;
|
|
43399
|
+
/** Legacy name for parameter that has been superseded by `quotaUser`. */
|
|
43400
|
+
userIp?: string;
|
|
43401
|
+
}): Request<MultiMigsList>;
|
|
43402
|
+
}
|
|
43130
43403
|
interface RegionNetworkEndpointGroupsResource {
|
|
43131
43404
|
/** Attach a list of network endpoints to the specified network endpoint group. */
|
|
43132
43405
|
attachNetworkEndpoints(request: {
|
|
@@ -44794,7 +45067,7 @@ declare namespace gapi.client {
|
|
|
44794
45067
|
}): Request<Operation>;
|
|
44795
45068
|
}
|
|
44796
45069
|
interface RegionsResource {
|
|
44797
|
-
/** Returns the specified Region resource. To decrease latency for this method, you can optionally omit any unneeded information from the response by using a field mask. This practice is especially recommended for unused quota information (the `quotas` field). To exclude one or more fields, set your request's `fields` query parameter to only include the fields you need. For example, to only include the `id` and `selfLink` fields, add the query parameter `?fields=id,selfLink` to your request. */
|
|
45070
|
+
/** Returns the specified Region resource. To decrease latency for this method, you can optionally omit any unneeded information from the response by using a field mask. This practice is especially recommended for unused quota information (the `quotas` field). To exclude one or more fields, set your request's `fields` query parameter to only include the fields you need. For example, to only include the `id` and `selfLink` fields, add the query parameter `?fields=id,selfLink` to your request. This method fails if the quota information is unavailable for the region and if the organization policy constraint compute.requireBasicQuotaInResponse is enforced. This constraint, when enforced, disables the fail-open behaviour when quota information (the `items.quotas` field) is unavailable for the region. It is recommended to use the default setting for the constraint unless your application requires the fail-closed behaviour for this method. */
|
|
44798
45071
|
get(request?: {
|
|
44799
45072
|
/** V1 error format. */
|
|
44800
45073
|
'$.xgafv'?: string;
|
|
@@ -52594,7 +52867,7 @@ declare namespace gapi.client {
|
|
|
52594
52867
|
},
|
|
52595
52868
|
body: TestPermissionsRequest
|
|
52596
52869
|
): Request<TestPermissionsResponse>;
|
|
52597
|
-
/** Updates the specified storagePool with the data included in the request. The update is performed only on selected fields included as part of update-mask. Only the following fields can be modified:
|
|
52870
|
+
/** Updates the specified storagePool with the data included in the request. The update is performed only on selected fields included as part of update-mask. Only the following fields can be modified: pool_provisioned_capacity_gb, pool_provisioned_iops and pool_provisioned_throughput. */
|
|
52598
52871
|
update(request: {
|
|
52599
52872
|
/** V1 error format. */
|
|
52600
52873
|
'$.xgafv'?: string;
|
|
@@ -58835,6 +59108,8 @@ declare namespace gapi.client {
|
|
|
58835
59108
|
|
|
58836
59109
|
const regionInstantSnapshots: RegionInstantSnapshotsResource;
|
|
58837
59110
|
|
|
59111
|
+
const regionMultiMigs: RegionMultiMigsResource;
|
|
59112
|
+
|
|
58838
59113
|
const regionNetworkEndpointGroups: RegionNetworkEndpointGroupsResource;
|
|
58839
59114
|
|
|
58840
59115
|
const regionNetworkFirewallPolicies: RegionNetworkFirewallPoliciesResource;
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -3110,6 +3110,26 @@ Returns permissions that a caller has on the specified resource.
|
|
|
3110
3110
|
*/
|
|
3111
3111
|
await gapi.client.compute.regionInstantSnapshots.testIamPermissions({ project: "project", region: "region", resource: "resource", });
|
|
3112
3112
|
|
|
3113
|
+
/*
|
|
3114
|
+
Deletes a regional multiMIG in the specified project.
|
|
3115
|
+
*/
|
|
3116
|
+
await gapi.client.compute.regionMultiMigs.delete({ multiMig: "multiMig", project: "project", region: "region", });
|
|
3117
|
+
|
|
3118
|
+
/*
|
|
3119
|
+
Returns the specified MultiMIG resource.
|
|
3120
|
+
*/
|
|
3121
|
+
await gapi.client.compute.regionMultiMigs.get({ multiMig: "multiMig", project: "project", region: "region", });
|
|
3122
|
+
|
|
3123
|
+
/*
|
|
3124
|
+
Creates a regional multiMIG in the specified project.
|
|
3125
|
+
*/
|
|
3126
|
+
await gapi.client.compute.regionMultiMigs.insert({ project: "project", region: "region", });
|
|
3127
|
+
|
|
3128
|
+
/*
|
|
3129
|
+
Retrieves a list of MultiMIGs in a project and region.
|
|
3130
|
+
*/
|
|
3131
|
+
await gapi.client.compute.regionMultiMigs.list({ project: "project", region: "region", });
|
|
3132
|
+
|
|
3113
3133
|
/*
|
|
3114
3134
|
Attach a list of network endpoints to the specified network endpoint group.
|
|
3115
3135
|
*/
|
|
@@ -3286,7 +3306,7 @@ Waits for the specified Operation resource to return as `DONE` or for the reques
|
|
|
3286
3306
|
await gapi.client.compute.regionOperations.wait({ operation: "operation", project: "project", region: "region", });
|
|
3287
3307
|
|
|
3288
3308
|
/*
|
|
3289
|
-
Returns the specified Region resource. To decrease latency for this method, you can optionally omit any unneeded information from the response by using a field mask. This practice is especially recommended for unused quota information (the `quotas` field). To exclude one or more fields, set your request's `fields` query parameter to only include the fields you need. For example, to only include the `id` and `selfLink` fields, add the query parameter `?fields=id,selfLink` to your request.
|
|
3309
|
+
Returns the specified Region resource. To decrease latency for this method, you can optionally omit any unneeded information from the response by using a field mask. This practice is especially recommended for unused quota information (the `quotas` field). To exclude one or more fields, set your request's `fields` query parameter to only include the fields you need. For example, to only include the `id` and `selfLink` fields, add the query parameter `?fields=id,selfLink` to your request. This method fails if the quota information is unavailable for the region and if the organization policy constraint compute.requireBasicQuotaInResponse is enforced. This constraint, when enforced, disables the fail-open behaviour when quota information (the `items.quotas` field) is unavailable for the region. It is recommended to use the default setting for the constraint unless your application requires the fail-closed behaviour for this method.
|
|
3290
3310
|
*/
|
|
3291
3311
|
await gapi.client.compute.regions.get({ project: "project", region: "region", });
|
|
3292
3312
|
|
|
@@ -4116,7 +4136,7 @@ Returns permissions that a caller has on the specified resource.
|
|
|
4116
4136
|
await gapi.client.compute.storagePools.testIamPermissions({ project: "project", resource: "resource", zone: "zone", });
|
|
4117
4137
|
|
|
4118
4138
|
/*
|
|
4119
|
-
Updates the specified storagePool with the data included in the request. The update is performed only on selected fields included as part of update-mask. Only the following fields can be modified:
|
|
4139
|
+
Updates the specified storagePool with the data included in the request. The update is performed only on selected fields included as part of update-mask. Only the following fields can be modified: pool_provisioned_capacity_gb, pool_provisioned_iops and pool_provisioned_throughput.
|
|
4120
4140
|
*/
|
|
4121
4141
|
await gapi.client.compute.storagePools.update({ project: "project", storagePool: "storagePool", zone: "zone", });
|
|
4122
4142
|
|