net.accelbyte.sdk.api.dsmc.operations.image_config.GetImagePatchDetail Maven / Gradle / Ivy
Show all versions of module-dsmc Show documentation
/*
* Copyright (c) 2024 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.dsmc.operations.image_config;
import java.io.*;
import java.util.*;
import lombok.Builder;
import lombok.Getter;
import lombok.Setter;
import net.accelbyte.sdk.api.dsmc.models.*;
import net.accelbyte.sdk.core.HttpResponseException;
import net.accelbyte.sdk.core.Operation;
import net.accelbyte.sdk.core.util.Helper;
/**
* GetImagePatchDetail
*
* Required permission: ADMIN:NAMESPACE:{namespace}:DSM:CONFIG [READ]
*
*
Required scope: social
*
*
This endpoint get specific image patch version of dedicated servers version.
*/
@Getter
@Setter
public class GetImagePatchDetail extends Operation {
/** generated field's value */
private String path =
"/dsmcontroller/admin/namespaces/{namespace}/images/versions/{version}/patches/{versionPatch}";
private String method = "GET";
private List consumes = Arrays.asList("application/json");
private List produces = Arrays.asList("application/json");
private String locationQuery = null;
/** fields as input parameter */
private String namespace;
private String version;
private String versionPatch;
/**
* @param namespace required
* @param version required
* @param versionPatch required
*/
@Builder
// @deprecated 2022-08-29 - All args constructor may cause problems. Use builder instead.
@Deprecated
public GetImagePatchDetail(
String customBasePath, String namespace, String version, String versionPatch) {
this.namespace = namespace;
this.version = version;
this.versionPatch = versionPatch;
super.customBasePath = customBasePath != null ? customBasePath : "";
securities.add("Bearer");
}
@Override
public Map getPathParams() {
Map pathParams = new HashMap<>();
if (this.namespace != null) {
pathParams.put("namespace", this.namespace);
}
if (this.version != null) {
pathParams.put("version", this.version);
}
if (this.versionPatch != null) {
pathParams.put("versionPatch", this.versionPatch);
}
return pathParams;
}
@Override
public boolean isValid() {
if (this.namespace == null) {
return false;
}
if (this.version == null) {
return false;
}
if (this.versionPatch == null) {
return false;
}
return true;
}
public ModelsGetImagePatchDetailResponse 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 ModelsGetImagePatchDetailResponse().createFromJson(json);
}
}