net.accelbyte.sdk.api.dsmc.operations.pod_config.GetLowestInstanceSpec 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.pod_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;
/**
* GetLowestInstanceSpec
*
* Required permission: ADMIN:NAMESPACE:*:DSM:CONFIG [READ]
*
*
Required scope: social
*
*
This endpoint returns the lowest instance spec, both cpu (in Mhz) and memory (in Mb).
*/
@Getter
@Setter
public class GetLowestInstanceSpec extends Operation {
/** generated field's value */
private String path = "/dsmcontroller/admin/instances/spec/lowest";
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 */
/** */
@Builder
// @deprecated 2022-08-29 - All args constructor may cause problems. Use builder instead.
@Deprecated
public GetLowestInstanceSpec(String customBasePath) {
super.customBasePath = customBasePath != null ? customBasePath : "";
securities.add("Bearer");
}
@Override
public boolean isValid() {
return true;
}
public ModelsInstanceSpec 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 ModelsInstanceSpec().createFromJson(json);
}
}