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-migrationcenter/v1/2.0.0/com/google/api/services/migrationcenter/v1/model/MachineNetworkDetails.java
+24Lines changed: 24 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -36,6 +36,13 @@ public final class MachineNetworkDetails extends com.google.api.client.json.Gene
36
36
@com.google.api.client.util.Key
37
37
privateNetworkAdapterListadapters;
38
38
39
+
/**
40
+
* Optional. Default gateway address.
41
+
* The value may be {@code null}.
42
+
*/
43
+
@com.google.api.client.util.Key
44
+
privatejava.lang.StringdefaultGateway;
45
+
39
46
/**
40
47
* The primary IP address of the machine.
41
48
* The value may be {@code null}.
@@ -74,6 +81,23 @@ public MachineNetworkDetails setAdapters(NetworkAdapterList adapters) {
74
81
returnthis;
75
82
}
76
83
84
+
/**
85
+
* Optional. Default gateway address.
86
+
* @return value or {@code null} for none
87
+
*/
88
+
publicjava.lang.StringgetDefaultGateway() {
89
+
returndefaultGateway;
90
+
}
91
+
92
+
/**
93
+
* Optional. Default gateway address.
94
+
* @param defaultGateway defaultGateway or {@code null} for none
0 commit comments