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-integrations/v1/2.0.0/com/google/api/services/integrations/v1/Integrations.java
+131Lines changed: 131 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3153,6 +3153,137 @@ public Clients clients() {
3153
3153
*/
3154
3154
public class Clients {
3155
3155
3156
+
/**
3157
+
* Updates the client customer configuration for the given project and location resource name
3158
+
*
3159
+
* Create a request for the method "clients.changeConfig".
3160
+
*
3161
+
* This request holds the parameters needed by the integrations server. After setting any optional
3162
+
* parameters, call the {@link ChangeConfig#execute()} method to invoke the remote operation.
3163
+
*
3164
+
* @param parent Required. Required: Format - projects/{project}/locations/{location}
3165
+
* @param content the {@link com.google.api.services.integrations.v1.model.GoogleCloudIntegrationsV1alphaChangeCustomerConfigRequest}
3166
+
* @return the request
3167
+
*/
3168
+
public ChangeConfig changeConfig(java.lang.String parent, com.google.api.services.integrations.v1.model.GoogleCloudIntegrationsV1alphaChangeCustomerConfigRequest content) throws java.io.IOException {
3169
+
ChangeConfig result = new ChangeConfig(parent, content);
3170
+
initialize(result);
3171
+
return result;
3172
+
}
3173
+
3174
+
public class ChangeConfig extends IntegrationsRequest<com.google.api.services.integrations.v1.model.GoogleCloudIntegrationsV1alphaChangeCustomerConfigResponse> {
3175
+
3176
+
private static final String REST_PATH = "v1/{+parent}/clients:changeConfig";
3177
+
3178
+
private final java.util.regex.Pattern PARENT_PATTERN =
0 commit comments