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-networkservices/v1/2.0.0/com/google/api/services/networkservices/v1/NetworkServices.java
+169Lines changed: 169 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -11185,6 +11185,175 @@ public List set(String parameterName, Object value) {
11185
11185
return (List) super.set(parameterName, value);
11186
11186
}
11187
11187
}
11188
+
/**
11189
+
* Updates the parameters of a single ServiceBinding.
11190
+
*
11191
+
* Create a request for the method "serviceBindings.patch".
11192
+
*
11193
+
* This request holds the parameters needed by the networkservices server. After setting any
11194
+
* optional parameters, call the {@link Patch#execute()} method to invoke the remote operation.
11195
+
*
11196
+
* @param name Identifier. Name of the ServiceBinding resource. It matches pattern
11197
+
* `projects/locations/serviceBindings/`.
11198
+
* @param content the {@link com.google.api.services.networkservices.v1.model.ServiceBinding}
11199
+
* @return the request
11200
+
*/
11201
+
public Patch patch(java.lang.String name, com.google.api.services.networkservices.v1.model.ServiceBinding content) throws java.io.IOException {
11202
+
Patch result = new Patch(name, content);
11203
+
initialize(result);
11204
+
return result;
11205
+
}
11206
+
11207
+
public class Patch extends NetworkServicesRequest<com.google.api.services.networkservices.v1.model.Operation> {
11208
+
11209
+
private static final String REST_PATH = "v1/{+name}";
11210
+
11211
+
private final java.util.regex.Pattern NAME_PATTERN =
0 commit comments