net.accelbyte.sdk.api.group.operations.configuration.DeleteGroupConfigurationGlobalRuleAdminV1 Maven / Gradle / Ivy
Show all versions of sdk Show documentation
/*
* Copyright (c) 2022 AccelByte Inc. All Rights Reserved
* This is licensed software from AccelByte Inc, for limitations
* and restrictions contact your company contract manager.
*
* Code generated. DO NOT EDIT.
*/
package net.accelbyte.sdk.api.group.operations.configuration;
import java.io.*;
import java.util.*;
import lombok.Builder;
import lombok.Getter;
import lombok.Setter;
import net.accelbyte.sdk.api.group.models.*;
import net.accelbyte.sdk.core.HttpResponseException;
import net.accelbyte.sdk.core.Operation;
import net.accelbyte.sdk.core.util.Helper;
/**
* deleteGroupConfigurationGlobalRuleAdminV1
*
* Required permission 'ADMIN:NAMESPACE:{namespace}:GROUP:CONFIGURATION [UPDATE]'
*
*
This endpoint is used to delete existing global rule configuration based on the allowed
* action. It will not give any error if the allowed action is not existed in the global rule
*
*
Action Code: 73105
*/
@Getter
@Setter
public class DeleteGroupConfigurationGlobalRuleAdminV1 extends Operation {
/** generated field's value */
private String path =
"/group/v1/admin/namespaces/{namespace}/configuration/{configurationCode}/rules/{allowedAction}";
private String method = "DELETE";
private List consumes = Arrays.asList();
private List produces = Arrays.asList("application/json");
private String locationQuery = null;
/** fields as input parameter */
private String allowedAction;
private String configurationCode;
private String namespace;
/**
* @param allowedAction required
* @param configurationCode required
* @param namespace required
*/
@Builder
// @deprecated 2022-08-29 - All args constructor may cause problems. Use builder instead.
@Deprecated
public DeleteGroupConfigurationGlobalRuleAdminV1(
String allowedAction, String configurationCode, String namespace) {
this.allowedAction = allowedAction;
this.configurationCode = configurationCode;
this.namespace = namespace;
securities.add("Bearer");
}
@Override
public Map getPathParams() {
Map pathParams = new HashMap<>();
if (this.allowedAction != null) {
pathParams.put("allowedAction", this.allowedAction);
}
if (this.configurationCode != null) {
pathParams.put("configurationCode", this.configurationCode);
}
if (this.namespace != null) {
pathParams.put("namespace", this.namespace);
}
return pathParams;
}
@Override
public boolean isValid() {
if (this.allowedAction == null) {
return false;
}
if (this.configurationCode == null) {
return false;
}
if (this.namespace == null) {
return false;
}
return true;
}
public ModelsUpdateGroupConfigurationResponseV1 parseResponse(
int code, String contentType, InputStream payload) throws HttpResponseException, IOException {
if (code != 200) {
final String json = Helper.convertInputStreamToString(payload);
throw new HttpResponseException(code, json);
}
final String json = Helper.convertInputStreamToString(payload);
return new ModelsUpdateGroupConfigurationResponseV1().createFromJson(json);
}
}