You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/google-api-services-networkmanagement/v1/2.0.0/com/google/api/services/networkmanagement/v1/NetworkManagement.java
Copy file name to clipboardExpand all lines: clients/google-api-services-networkmanagement/v1/2.0.0/com/google/api/services/networkmanagement/v1/model/Endpoint.java
+39-27Lines changed: 39 additions & 27 deletions
Original file line number
Diff line number
Diff line change
@@ -99,6 +99,13 @@ public final class Endpoint extends com.google.api.client.json.GenericJson {
99
99
@com.google.api.client.util.Key
100
100
privatejava.lang.StringgkeMasterCluster;
101
101
102
+
/**
103
+
* A [GKE Pod](https://cloud.google.com/kubernetes-engine/docs/concepts/pod) URI.
104
+
* The value may be {@code null}.
105
+
*/
106
+
@com.google.api.client.util.Key
107
+
privatejava.lang.StringgkePod;
108
+
102
109
/**
103
110
* A Compute Engine instance URI.
104
111
* The value may be {@code null}.
@@ -129,15 +136,15 @@ public final class Endpoint extends com.google.api.client.json.GenericJson {
129
136
privatejava.lang.StringloadBalancerType;
130
137
131
138
/**
132
-
* A VPC network URI.
139
+
* A VPC network URI. Used according to the `network_type`. Relevant only for the source
140
+
* endpoints.
133
141
* The value may be {@code null}.
134
142
*/
135
143
@com.google.api.client.util.Key
136
144
privatejava.lang.Stringnetwork;
137
145
138
146
/**
139
-
* Type of the network where the endpoint is located. Applicable only to source endpoint, as
140
-
* destination network type can be inferred from the source.
147
+
* Type of the network where the endpoint is located. Relevant only for the source endpoints.
141
148
* The value may be {@code null}.
142
149
*/
143
150
@com.google.api.client.util.Key
@@ -151,12 +158,8 @@ public final class Endpoint extends com.google.api.client.json.GenericJson {
151
158
privatejava.lang.Integerport;
152
159
153
160
/**
154
-
* Project ID where the endpoint is located. The project ID can be derived from the URI if you
155
-
* provide a endpoint or network URI. The following are two cases where you may need to provide
156
-
* the project ID: 1. Only the IP address is specified, and the IP address is within a Google
157
-
* Cloud project. 2. When you are using Shared VPC and the IP address that you provide is from the
158
-
* service project. In this case, the network that the IP address resides in is defined in the
159
-
* host project.
161
+
* Endpoint project ID. Used according to the `network_type`. Relevant only for the source
162
+
* endpoints.
160
163
* The value may be {@code null}.
161
164
*/
162
165
@com.google.api.client.util.Key
@@ -340,6 +343,23 @@ public Endpoint setGkeMasterCluster(java.lang.String gkeMasterCluster) {
340
343
returnthis;
341
344
}
342
345
346
+
/**
347
+
* A [GKE Pod](https://cloud.google.com/kubernetes-engine/docs/concepts/pod) URI.
348
+
* @return value or {@code null} for none
349
+
*/
350
+
publicjava.lang.StringgetGkePod() {
351
+
returngkePod;
352
+
}
353
+
354
+
/**
355
+
* A [GKE Pod](https://cloud.google.com/kubernetes-engine/docs/concepts/pod) URI.
356
+
* @param gkePod gkePod or {@code null} for none
357
+
*/
358
+
publicEndpointsetGkePod(java.lang.StringgkePod) {
359
+
this.gkePod = gkePod;
360
+
returnthis;
361
+
}
362
+
343
363
/**
344
364
* A Compute Engine instance URI.
345
365
* @return value or {@code null} for none
@@ -411,15 +431,17 @@ public Endpoint setLoadBalancerType(java.lang.String loadBalancerType) {
411
431
}
412
432
413
433
/**
414
-
* A VPC network URI.
434
+
* A VPC network URI. Used according to the `network_type`. Relevant only for the source
435
+
* endpoints.
415
436
* @return value or {@code null} for none
416
437
*/
417
438
publicjava.lang.StringgetNetwork() {
418
439
returnnetwork;
419
440
}
420
441
421
442
/**
422
-
* A VPC network URI.
443
+
* A VPC network URI. Used according to the `network_type`. Relevant only for the source
0 commit comments