@maxim_mazurok/gapi.client.networkmanagement-v1 0.0.20241023 → 0.0.20241202
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 +11 -5
- package/package.json +1 -1
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://networkmanagement.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20241202
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -138,6 +138,10 @@ declare namespace gapi.client {
|
|
|
138
138
|
reachabilityDetails?: ReachabilityDetails;
|
|
139
139
|
/** Other projects that may be relevant for reachability analysis. This is applicable to scenarios where a test can cross project boundaries. */
|
|
140
140
|
relatedProjects?: string[];
|
|
141
|
+
/** Output only. The reachability details of this test from the latest run for the return path. The details are updated when creating a new test, updating an existing test, or triggering a one-time rerun of an existing test. */
|
|
142
|
+
returnReachabilityDetails?: ReachabilityDetails;
|
|
143
|
+
/** Whether run analysis for the return path from destination to source. Default value is false. */
|
|
144
|
+
roundTrip?: boolean;
|
|
141
145
|
/** Required. Source specification of the Connectivity Test. You can use a combination of source IP address, virtual machine (VM) instance, or Compute Engine network to uniquely identify the source location. Examples: If the source IP address is an internal IP address within a Google Cloud Virtual Private Cloud (VPC) network, then you must also specify the VPC network. Otherwise, specify the VM instance, which already contains its internal IP address and VPC network information. If the source of the test is within an on-premises network, then you must provide the destination VPC network. If the source endpoint is a Compute Engine VM instance with multiple network interfaces, the instance itself is not sufficient to identify the endpoint. So, you must also specify the source IP address or VPC network. A reachability analysis proceeds even if the source location is ambiguous. However, the test result may include endpoints that you don't intend to test. */
|
|
142
146
|
source?: Endpoint;
|
|
143
147
|
/** Output only. The time the test's configuration was updated. */
|
|
@@ -185,7 +189,7 @@ declare namespace gapi.client {
|
|
|
185
189
|
forwardingRule?: string;
|
|
186
190
|
/** Output only. Specifies the type of the target of the forwarding rule. */
|
|
187
191
|
forwardingRuleTarget?: string;
|
|
188
|
-
/** DNS endpoint of [Google Kubernetes Engine cluster control plane](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-architecture). Requires gke_master_cluster to be set, can't be used simultaneoulsly with ip_address. */
|
|
192
|
+
/** DNS endpoint of [Google Kubernetes Engine cluster control plane](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-architecture). Requires gke_master_cluster to be set, can't be used simultaneoulsly with ip_address or network. Applicable only to destination endpoint. */
|
|
189
193
|
fqdn?: string;
|
|
190
194
|
/** A cluster URI for [Google Kubernetes Engine cluster control plane](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-architecture). */
|
|
191
195
|
gkeMasterCluster?: string;
|
|
@@ -299,9 +303,11 @@ declare namespace gapi.client {
|
|
|
299
303
|
clusterNetworkUri?: string;
|
|
300
304
|
/** URI of a GKE cluster. */
|
|
301
305
|
clusterUri?: string;
|
|
302
|
-
/**
|
|
306
|
+
/** DNS endpoint of a GKE cluster control plane. */
|
|
307
|
+
dnsEndpoint?: string;
|
|
308
|
+
/** External IP address of a GKE cluster control plane. */
|
|
303
309
|
externalIp?: string;
|
|
304
|
-
/** Internal IP address of a GKE cluster
|
|
310
|
+
/** Internal IP address of a GKE cluster control plane. */
|
|
305
311
|
internalIp?: string;
|
|
306
312
|
}
|
|
307
313
|
interface GoogleServiceInfo {
|
|
@@ -1126,7 +1132,7 @@ declare namespace gapi.client {
|
|
|
1126
1132
|
): Request<TestIamPermissionsResponse>;
|
|
1127
1133
|
}
|
|
1128
1134
|
interface OperationsResource {
|
|
1129
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
1135
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
1130
1136
|
cancel(request: {
|
|
1131
1137
|
/** V1 error format. */
|
|
1132
1138
|
'$.xgafv'?: string;
|