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/v1beta1/2.0.0/com/google/api/services/networkservices/v1beta1/NetworkServices.java
+169Lines changed: 169 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -10594,6 +10594,175 @@ public List set(String parameterName, Object value) {
10594
10594
return (List) super.set(parameterName, value);
10595
10595
}
10596
10596
}
10597
+
/**
10598
+
* Updates the parameters of a single ServiceBinding.
10599
+
*
10600
+
* Create a request for the method "serviceBindings.patch".
10601
+
*
10602
+
* This request holds the parameters needed by the networkservices server. After setting any
10603
+
* optional parameters, call the {@link Patch#execute()} method to invoke the remote operation.
10604
+
*
10605
+
* @param name Identifier. Name of the ServiceBinding resource. It matches pattern
10606
+
* `projects/locations/serviceBindings/`.
10607
+
* @param content the {@link com.google.api.services.networkservices.v1beta1.model.ServiceBinding}
10608
+
* @return the request
10609
+
*/
10610
+
public Patch patch(java.lang.String name, com.google.api.services.networkservices.v1beta1.model.ServiceBinding content) throws java.io.IOException {
10611
+
Patch result = new Patch(name, content);
10612
+
initialize(result);
10613
+
return result;
10614
+
}
10615
+
10616
+
public class Patch extends NetworkServicesRequest<com.google.api.services.networkservices.v1beta1.model.Operation> {
10617
+
10618
+
private static final String REST_PATH = "v1beta1/{+name}";
10619
+
10620
+
private final java.util.regex.Pattern NAME_PATTERN =
0 commit comments