All URIs are relative to https://ncloud.apigw.ntruss.com/vautoscaling/v2
Method | HTTP request | Description |
---|---|---|
createAutoScalingGroupGet | GET /createAutoScalingGroup | |
createAutoScalingGroupPost | POST /createAutoScalingGroup | |
createLaunchConfigurationGet | GET /createLaunchConfiguration | |
createLaunchConfigurationPost | POST /createLaunchConfiguration | |
deleteAutoScalingGroupGet | GET /deleteAutoScalingGroup | |
deleteAutoScalingGroupPost | POST /deleteAutoScalingGroup | |
deleteLaunchConfigurationGet | GET /deleteLaunchConfiguration | |
deleteLaunchConfigurationPost | POST /deleteLaunchConfiguration | |
deleteScalingPolicyGet | GET /deleteScalingPolicy | |
deleteScalingPolicyPost | POST /deleteScalingPolicy | |
deleteScheduledActionGet | GET /deleteScheduledAction | |
deleteScheduledActionPost | POST /deleteScheduledAction | |
executePolicyGet | GET /executePolicy | |
executePolicyPost | POST /executePolicy | |
getAdjustmentTypeListGet | GET /getAdjustmentTypeList | |
getAdjustmentTypeListPost | POST /getAdjustmentTypeList | |
getAutoScalingActivityLogListGet | GET /getAutoScalingActivityLogList | |
getAutoScalingActivityLogListPost | POST /getAutoScalingActivityLogList | |
getAutoScalingGroupDetailGet | GET /getAutoScalingGroupDetail | |
getAutoScalingGroupDetailPost | POST /getAutoScalingGroupDetail | |
getAutoScalingGroupListGet | GET /getAutoScalingGroupList | |
getAutoScalingGroupListPost | POST /getAutoScalingGroupList | |
getAutoScalingPolicyListGet | GET /getAutoScalingPolicyList | |
getAutoScalingPolicyListPost | POST /getAutoScalingPolicyList | |
getLaunchConfigurationDetailGet | GET /getLaunchConfigurationDetail | |
getLaunchConfigurationDetailPost | POST /getLaunchConfigurationDetail | |
getLaunchConfigurationListGet | GET /getLaunchConfigurationList | |
getLaunchConfigurationListPost | POST /getLaunchConfigurationList | |
getScalingProcessTypeListGet | GET /getScalingProcessTypeList | |
getScalingProcessTypeListPost | POST /getScalingProcessTypeList | |
getScheduledActionListGet | GET /getScheduledActionList | |
getScheduledActionListPost | POST /getScheduledActionList | |
putScalingPolicyGet | GET /putScalingPolicy | |
putScalingPolicyPost | POST /putScalingPolicy | |
putScheduledUpdateGroupActionGet | GET /putScheduledUpdateGroupAction | |
putScheduledUpdateGroupActionPost | POST /putScheduledUpdateGroupAction | |
resumeProcessesGet | GET /resumeProcesses | |
resumeProcessesPost | POST /resumeProcesses | |
setDesiredCapacityGet | GET /setDesiredCapacity | |
setDesiredCapacityPost | POST /setDesiredCapacity | |
suspendProcessesGet | GET /suspendProcesses | |
suspendProcessesPost | POST /suspendProcesses | |
updateAutoScalingGroupGet | GET /updateAutoScalingGroup | |
updateAutoScalingGroupPost | POST /updateAutoScalingGroup |
CreateAutoScalingGroupResponse createAutoScalingGroupGet(createAutoScalingGroupRequest)
오토스케일링그룹생성
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
CreateAutoScalingGroupRequest createAutoScalingGroupRequest = new CreateAutoScalingGroupRequest(); // CreateAutoScalingGroupRequest | createAutoScalingGroupRequest
try {
// Handler Successful response
ApiResponse<CreateAutoScalingGroupResponse> result = apiInstance.createAutoScalingGroupGet(createAutoScalingGroupRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
createAutoScalingGroupRequest | CreateAutoScalingGroupRequest | createAutoScalingGroupRequest |
CreateAutoScalingGroupResponse
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
CreateAutoScalingGroupResponse createAutoScalingGroupPost(createAutoScalingGroupRequest)
오토스케일링그룹생성
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
CreateAutoScalingGroupRequest createAutoScalingGroupRequest = new CreateAutoScalingGroupRequest(); // CreateAutoScalingGroupRequest | createAutoScalingGroupRequest
try {
// Handler Successful response
ApiResponse<CreateAutoScalingGroupResponse> result = apiInstance.createAutoScalingGroupPost(createAutoScalingGroupRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
createAutoScalingGroupRequest | CreateAutoScalingGroupRequest | createAutoScalingGroupRequest |
CreateAutoScalingGroupResponse
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
CreateLaunchConfigurationResponse createLaunchConfigurationGet(createLaunchConfigurationRequest)
론치설정생성
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
CreateLaunchConfigurationRequest createLaunchConfigurationRequest = new CreateLaunchConfigurationRequest(); // CreateLaunchConfigurationRequest | createLaunchConfigurationRequest
try {
// Handler Successful response
ApiResponse<CreateLaunchConfigurationResponse> result = apiInstance.createLaunchConfigurationGet(createLaunchConfigurationRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
createLaunchConfigurationRequest | CreateLaunchConfigurationRequest | createLaunchConfigurationRequest |
CreateLaunchConfigurationResponse
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
CreateLaunchConfigurationResponse createLaunchConfigurationPost(createLaunchConfigurationRequest)
론치설정생성
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
CreateLaunchConfigurationRequest createLaunchConfigurationRequest = new CreateLaunchConfigurationRequest(); // CreateLaunchConfigurationRequest | createLaunchConfigurationRequest
try {
// Handler Successful response
ApiResponse<CreateLaunchConfigurationResponse> result = apiInstance.createLaunchConfigurationPost(createLaunchConfigurationRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
createLaunchConfigurationRequest | CreateLaunchConfigurationRequest | createLaunchConfigurationRequest |
CreateLaunchConfigurationResponse
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
DeleteAutoScalingGroupResponse deleteAutoScalingGroupGet(deleteAutoScalingGroupRequest)
오토스케일링그룹삭제
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
DeleteAutoScalingGroupRequest deleteAutoScalingGroupRequest = new DeleteAutoScalingGroupRequest(); // DeleteAutoScalingGroupRequest | deleteAutoScalingGroupRequest
try {
// Handler Successful response
ApiResponse<DeleteAutoScalingGroupResponse> result = apiInstance.deleteAutoScalingGroupGet(deleteAutoScalingGroupRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
deleteAutoScalingGroupRequest | DeleteAutoScalingGroupRequest | deleteAutoScalingGroupRequest |
DeleteAutoScalingGroupResponse
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
DeleteAutoScalingGroupResponse deleteAutoScalingGroupPost(deleteAutoScalingGroupRequest)
오토스케일링그룹삭제
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
DeleteAutoScalingGroupRequest deleteAutoScalingGroupRequest = new DeleteAutoScalingGroupRequest(); // DeleteAutoScalingGroupRequest | deleteAutoScalingGroupRequest
try {
// Handler Successful response
ApiResponse<DeleteAutoScalingGroupResponse> result = apiInstance.deleteAutoScalingGroupPost(deleteAutoScalingGroupRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
deleteAutoScalingGroupRequest | DeleteAutoScalingGroupRequest | deleteAutoScalingGroupRequest |
DeleteAutoScalingGroupResponse
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
DeleteLaunchConfigurationResponse deleteLaunchConfigurationGet(deleteLaunchConfigurationRequest)
론치설정삭제
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
DeleteLaunchConfigurationRequest deleteLaunchConfigurationRequest = new DeleteLaunchConfigurationRequest(); // DeleteLaunchConfigurationRequest | deleteLaunchConfigurationRequest
try {
// Handler Successful response
ApiResponse<DeleteLaunchConfigurationResponse> result = apiInstance.deleteLaunchConfigurationGet(deleteLaunchConfigurationRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
deleteLaunchConfigurationRequest | DeleteLaunchConfigurationRequest | deleteLaunchConfigurationRequest |
DeleteLaunchConfigurationResponse
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
DeleteLaunchConfigurationResponse deleteLaunchConfigurationPost(deleteLaunchConfigurationRequest)
론치설정삭제
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
DeleteLaunchConfigurationRequest deleteLaunchConfigurationRequest = new DeleteLaunchConfigurationRequest(); // DeleteLaunchConfigurationRequest | deleteLaunchConfigurationRequest
try {
// Handler Successful response
ApiResponse<DeleteLaunchConfigurationResponse> result = apiInstance.deleteLaunchConfigurationPost(deleteLaunchConfigurationRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
deleteLaunchConfigurationRequest | DeleteLaunchConfigurationRequest | deleteLaunchConfigurationRequest |
DeleteLaunchConfigurationResponse
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
DeleteScalingPolicyResponse deleteScalingPolicyGet(deleteScalingPolicyRequest)
스케일링정책삭제
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
DeleteScalingPolicyRequest deleteScalingPolicyRequest = new DeleteScalingPolicyRequest(); // DeleteScalingPolicyRequest | deleteScalingPolicyRequest
try {
// Handler Successful response
ApiResponse<DeleteScalingPolicyResponse> result = apiInstance.deleteScalingPolicyGet(deleteScalingPolicyRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
deleteScalingPolicyRequest | DeleteScalingPolicyRequest | deleteScalingPolicyRequest |
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
DeleteScalingPolicyResponse deleteScalingPolicyPost(deleteScalingPolicyRequest)
스케일링정책삭제
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
DeleteScalingPolicyRequest deleteScalingPolicyRequest = new DeleteScalingPolicyRequest(); // DeleteScalingPolicyRequest | deleteScalingPolicyRequest
try {
// Handler Successful response
ApiResponse<DeleteScalingPolicyResponse> result = apiInstance.deleteScalingPolicyPost(deleteScalingPolicyRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
deleteScalingPolicyRequest | DeleteScalingPolicyRequest | deleteScalingPolicyRequest |
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
DeleteScheduledActionResponse deleteScheduledActionGet(deleteScheduledActionRequest)
스케쥴액션삭제
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
DeleteScheduledActionRequest deleteScheduledActionRequest = new DeleteScheduledActionRequest(); // DeleteScheduledActionRequest | deleteScheduledActionRequest
try {
// Handler Successful response
ApiResponse<DeleteScheduledActionResponse> result = apiInstance.deleteScheduledActionGet(deleteScheduledActionRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
deleteScheduledActionRequest | DeleteScheduledActionRequest | deleteScheduledActionRequest |
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
DeleteScheduledActionResponse deleteScheduledActionPost(deleteScheduledActionRequest)
스케쥴액션삭제
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
DeleteScheduledActionRequest deleteScheduledActionRequest = new DeleteScheduledActionRequest(); // DeleteScheduledActionRequest | deleteScheduledActionRequest
try {
// Handler Successful response
ApiResponse<DeleteScheduledActionResponse> result = apiInstance.deleteScheduledActionPost(deleteScheduledActionRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
deleteScheduledActionRequest | DeleteScheduledActionRequest | deleteScheduledActionRequest |
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
ExecutePolicyResponse executePolicyGet(executePolicyRequest)
정책실행
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
ExecutePolicyRequest executePolicyRequest = new ExecutePolicyRequest(); // ExecutePolicyRequest | executePolicyRequest
try {
// Handler Successful response
ApiResponse<ExecutePolicyResponse> result = apiInstance.executePolicyGet(executePolicyRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
executePolicyRequest | ExecutePolicyRequest | executePolicyRequest |
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
ExecutePolicyResponse executePolicyPost(executePolicyRequest)
정책실행
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
ExecutePolicyRequest executePolicyRequest = new ExecutePolicyRequest(); // ExecutePolicyRequest | executePolicyRequest
try {
// Handler Successful response
ApiResponse<ExecutePolicyResponse> result = apiInstance.executePolicyPost(executePolicyRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
executePolicyRequest | ExecutePolicyRequest | executePolicyRequest |
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
GetAdjustmentTypeListResponse getAdjustmentTypeListGet(getAdjustmentTypeListRequest)
조정유형리스트조회
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
GetAdjustmentTypeListRequest getAdjustmentTypeListRequest = new GetAdjustmentTypeListRequest(); // GetAdjustmentTypeListRequest | getAdjustmentTypeListRequest
try {
// Handler Successful response
ApiResponse<GetAdjustmentTypeListResponse> result = apiInstance.getAdjustmentTypeListGet(getAdjustmentTypeListRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
getAdjustmentTypeListRequest | GetAdjustmentTypeListRequest | getAdjustmentTypeListRequest |
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
GetAdjustmentTypeListResponse getAdjustmentTypeListPost(getAdjustmentTypeListRequest)
조정유형리스트조회
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
GetAdjustmentTypeListRequest getAdjustmentTypeListRequest = new GetAdjustmentTypeListRequest(); // GetAdjustmentTypeListRequest | getAdjustmentTypeListRequest
try {
// Handler Successful response
ApiResponse<GetAdjustmentTypeListResponse> result = apiInstance.getAdjustmentTypeListPost(getAdjustmentTypeListRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
getAdjustmentTypeListRequest | GetAdjustmentTypeListRequest | getAdjustmentTypeListRequest |
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
GetAutoScalingActivityLogListResponse getAutoScalingActivityLogListGet(getAutoScalingActivityLogListRequest)
액티비티로그리스트조회
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
GetAutoScalingActivityLogListRequest getAutoScalingActivityLogListRequest = new GetAutoScalingActivityLogListRequest(); // GetAutoScalingActivityLogListRequest | getAutoScalingActivityLogListRequest
try {
// Handler Successful response
ApiResponse<GetAutoScalingActivityLogListResponse> result = apiInstance.getAutoScalingActivityLogListGet(getAutoScalingActivityLogListRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
getAutoScalingActivityLogListRequest | GetAutoScalingActivityLogListRequest | getAutoScalingActivityLogListRequest |
GetAutoScalingActivityLogListResponse
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
GetAutoScalingActivityLogListResponse getAutoScalingActivityLogListPost(getAutoScalingActivityLogListRequest)
액티비티로그리스트조회
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
GetAutoScalingActivityLogListRequest getAutoScalingActivityLogListRequest = new GetAutoScalingActivityLogListRequest(); // GetAutoScalingActivityLogListRequest | getAutoScalingActivityLogListRequest
try {
// Handler Successful response
ApiResponse<GetAutoScalingActivityLogListResponse> result = apiInstance.getAutoScalingActivityLogListPost(getAutoScalingActivityLogListRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
getAutoScalingActivityLogListRequest | GetAutoScalingActivityLogListRequest | getAutoScalingActivityLogListRequest |
GetAutoScalingActivityLogListResponse
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
GetAutoScalingGroupDetailResponse getAutoScalingGroupDetailGet(getAutoScalingGroupDetailRequest)
오토스케일링그룹상세조회
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
GetAutoScalingGroupDetailRequest getAutoScalingGroupDetailRequest = new GetAutoScalingGroupDetailRequest(); // GetAutoScalingGroupDetailRequest | getAutoScalingGroupDetailRequest
try {
// Handler Successful response
ApiResponse<GetAutoScalingGroupDetailResponse> result = apiInstance.getAutoScalingGroupDetailGet(getAutoScalingGroupDetailRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
getAutoScalingGroupDetailRequest | GetAutoScalingGroupDetailRequest | getAutoScalingGroupDetailRequest |
GetAutoScalingGroupDetailResponse
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
GetAutoScalingGroupDetailResponse getAutoScalingGroupDetailPost(getAutoScalingGroupDetailRequest)
오토스케일링그룹상세조회
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
GetAutoScalingGroupDetailRequest getAutoScalingGroupDetailRequest = new GetAutoScalingGroupDetailRequest(); // GetAutoScalingGroupDetailRequest | getAutoScalingGroupDetailRequest
try {
// Handler Successful response
ApiResponse<GetAutoScalingGroupDetailResponse> result = apiInstance.getAutoScalingGroupDetailPost(getAutoScalingGroupDetailRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
getAutoScalingGroupDetailRequest | GetAutoScalingGroupDetailRequest | getAutoScalingGroupDetailRequest |
GetAutoScalingGroupDetailResponse
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
GetAutoScalingGroupListResponse getAutoScalingGroupListGet(getAutoScalingGroupListRequest)
오토스케일링그룹리스트조회
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
GetAutoScalingGroupListRequest getAutoScalingGroupListRequest = new GetAutoScalingGroupListRequest(); // GetAutoScalingGroupListRequest | getAutoScalingGroupListRequest
try {
// Handler Successful response
ApiResponse<GetAutoScalingGroupListResponse> result = apiInstance.getAutoScalingGroupListGet(getAutoScalingGroupListRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
getAutoScalingGroupListRequest | GetAutoScalingGroupListRequest | getAutoScalingGroupListRequest |
GetAutoScalingGroupListResponse
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
GetAutoScalingGroupListResponse getAutoScalingGroupListPost(getAutoScalingGroupListRequest)
오토스케일링그룹리스트조회
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
GetAutoScalingGroupListRequest getAutoScalingGroupListRequest = new GetAutoScalingGroupListRequest(); // GetAutoScalingGroupListRequest | getAutoScalingGroupListRequest
try {
// Handler Successful response
ApiResponse<GetAutoScalingGroupListResponse> result = apiInstance.getAutoScalingGroupListPost(getAutoScalingGroupListRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
getAutoScalingGroupListRequest | GetAutoScalingGroupListRequest | getAutoScalingGroupListRequest |
GetAutoScalingGroupListResponse
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
GetAutoScalingPolicyListResponse getAutoScalingPolicyListGet(getAutoScalingPolicyListRequest)
오토스케일링정책리스트조회
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
GetAutoScalingPolicyListRequest getAutoScalingPolicyListRequest = new GetAutoScalingPolicyListRequest(); // GetAutoScalingPolicyListRequest | getAutoScalingPolicyListRequest
try {
// Handler Successful response
ApiResponse<GetAutoScalingPolicyListResponse> result = apiInstance.getAutoScalingPolicyListGet(getAutoScalingPolicyListRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
getAutoScalingPolicyListRequest | GetAutoScalingPolicyListRequest | getAutoScalingPolicyListRequest |
GetAutoScalingPolicyListResponse
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
GetAutoScalingPolicyListResponse getAutoScalingPolicyListPost(getAutoScalingPolicyListRequest)
오토스케일링정책리스트조회
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
GetAutoScalingPolicyListRequest getAutoScalingPolicyListRequest = new GetAutoScalingPolicyListRequest(); // GetAutoScalingPolicyListRequest | getAutoScalingPolicyListRequest
try {
// Handler Successful response
ApiResponse<GetAutoScalingPolicyListResponse> result = apiInstance.getAutoScalingPolicyListPost(getAutoScalingPolicyListRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
getAutoScalingPolicyListRequest | GetAutoScalingPolicyListRequest | getAutoScalingPolicyListRequest |
GetAutoScalingPolicyListResponse
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
GetLaunchConfigurationDetailResponse getLaunchConfigurationDetailGet(getLaunchConfigurationDetailRequest)
론치설정상세조회
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
GetLaunchConfigurationDetailRequest getLaunchConfigurationDetailRequest = new GetLaunchConfigurationDetailRequest(); // GetLaunchConfigurationDetailRequest | getLaunchConfigurationDetailRequest
try {
// Handler Successful response
ApiResponse<GetLaunchConfigurationDetailResponse> result = apiInstance.getLaunchConfigurationDetailGet(getLaunchConfigurationDetailRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
getLaunchConfigurationDetailRequest | GetLaunchConfigurationDetailRequest | getLaunchConfigurationDetailRequest |
GetLaunchConfigurationDetailResponse
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
GetLaunchConfigurationDetailResponse getLaunchConfigurationDetailPost(getLaunchConfigurationDetailRequest)
론치설정상세조회
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
GetLaunchConfigurationDetailRequest getLaunchConfigurationDetailRequest = new GetLaunchConfigurationDetailRequest(); // GetLaunchConfigurationDetailRequest | getLaunchConfigurationDetailRequest
try {
// Handler Successful response
ApiResponse<GetLaunchConfigurationDetailResponse> result = apiInstance.getLaunchConfigurationDetailPost(getLaunchConfigurationDetailRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
getLaunchConfigurationDetailRequest | GetLaunchConfigurationDetailRequest | getLaunchConfigurationDetailRequest |
GetLaunchConfigurationDetailResponse
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
GetLaunchConfigurationListResponse getLaunchConfigurationListGet(getLaunchConfigurationListRequest)
론치설정리스트조회
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
GetLaunchConfigurationListRequest getLaunchConfigurationListRequest = new GetLaunchConfigurationListRequest(); // GetLaunchConfigurationListRequest | getLaunchConfigurationListRequest
try {
// Handler Successful response
ApiResponse<GetLaunchConfigurationListResponse> result = apiInstance.getLaunchConfigurationListGet(getLaunchConfigurationListRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
getLaunchConfigurationListRequest | GetLaunchConfigurationListRequest | getLaunchConfigurationListRequest |
GetLaunchConfigurationListResponse
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
GetLaunchConfigurationListResponse getLaunchConfigurationListPost(getLaunchConfigurationListRequest)
론치설정리스트조회
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
GetLaunchConfigurationListRequest getLaunchConfigurationListRequest = new GetLaunchConfigurationListRequest(); // GetLaunchConfigurationListRequest | getLaunchConfigurationListRequest
try {
// Handler Successful response
ApiResponse<GetLaunchConfigurationListResponse> result = apiInstance.getLaunchConfigurationListPost(getLaunchConfigurationListRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
getLaunchConfigurationListRequest | GetLaunchConfigurationListRequest | getLaunchConfigurationListRequest |
GetLaunchConfigurationListResponse
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
GetScalingProcessTypeListResponse getScalingProcessTypeListGet(getScalingProcessTypeListRequest)
스케일링프로세스유형리스트조회
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
GetScalingProcessTypeListRequest getScalingProcessTypeListRequest = new GetScalingProcessTypeListRequest(); // GetScalingProcessTypeListRequest | getScalingProcessTypeListRequest
try {
// Handler Successful response
ApiResponse<GetScalingProcessTypeListResponse> result = apiInstance.getScalingProcessTypeListGet(getScalingProcessTypeListRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
getScalingProcessTypeListRequest | GetScalingProcessTypeListRequest | getScalingProcessTypeListRequest |
GetScalingProcessTypeListResponse
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
GetScalingProcessTypeListResponse getScalingProcessTypeListPost(getScalingProcessTypeListRequest)
스케일링프로세스유형리스트조회
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
GetScalingProcessTypeListRequest getScalingProcessTypeListRequest = new GetScalingProcessTypeListRequest(); // GetScalingProcessTypeListRequest | getScalingProcessTypeListRequest
try {
// Handler Successful response
ApiResponse<GetScalingProcessTypeListResponse> result = apiInstance.getScalingProcessTypeListPost(getScalingProcessTypeListRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
getScalingProcessTypeListRequest | GetScalingProcessTypeListRequest | getScalingProcessTypeListRequest |
GetScalingProcessTypeListResponse
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
GetScheduledActionListResponse getScheduledActionListGet(getScheduledActionListRequest)
스케쥴액션리스트조회
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
GetScheduledActionListRequest getScheduledActionListRequest = new GetScheduledActionListRequest(); // GetScheduledActionListRequest | getScheduledActionListRequest
try {
// Handler Successful response
ApiResponse<GetScheduledActionListResponse> result = apiInstance.getScheduledActionListGet(getScheduledActionListRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
getScheduledActionListRequest | GetScheduledActionListRequest | getScheduledActionListRequest |
GetScheduledActionListResponse
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
GetScheduledActionListResponse getScheduledActionListPost(getScheduledActionListRequest)
스케쥴액션리스트조회
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
GetScheduledActionListRequest getScheduledActionListRequest = new GetScheduledActionListRequest(); // GetScheduledActionListRequest | getScheduledActionListRequest
try {
// Handler Successful response
ApiResponse<GetScheduledActionListResponse> result = apiInstance.getScheduledActionListPost(getScheduledActionListRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
getScheduledActionListRequest | GetScheduledActionListRequest | getScheduledActionListRequest |
GetScheduledActionListResponse
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
PutScalingPolicyResponse putScalingPolicyGet(putScalingPolicyRequest)
스케일링정책생성/수정
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
PutScalingPolicyRequest putScalingPolicyRequest = new PutScalingPolicyRequest(); // PutScalingPolicyRequest | putScalingPolicyRequest
try {
// Handler Successful response
ApiResponse<PutScalingPolicyResponse> result = apiInstance.putScalingPolicyGet(putScalingPolicyRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
putScalingPolicyRequest | PutScalingPolicyRequest | putScalingPolicyRequest |
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
PutScalingPolicyResponse putScalingPolicyPost(putScalingPolicyRequest)
스케일링정책생성/수정
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
PutScalingPolicyRequest putScalingPolicyRequest = new PutScalingPolicyRequest(); // PutScalingPolicyRequest | putScalingPolicyRequest
try {
// Handler Successful response
ApiResponse<PutScalingPolicyResponse> result = apiInstance.putScalingPolicyPost(putScalingPolicyRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
putScalingPolicyRequest | PutScalingPolicyRequest | putScalingPolicyRequest |
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
PutScheduledUpdateGroupActionResponse putScheduledUpdateGroupActionGet(putScheduledUpdateGroupActionRequest)
스케쥴액션생성/수정
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
PutScheduledUpdateGroupActionRequest putScheduledUpdateGroupActionRequest = new PutScheduledUpdateGroupActionRequest(); // PutScheduledUpdateGroupActionRequest | putScheduledUpdateGroupActionRequest
try {
// Handler Successful response
ApiResponse<PutScheduledUpdateGroupActionResponse> result = apiInstance.putScheduledUpdateGroupActionGet(putScheduledUpdateGroupActionRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
putScheduledUpdateGroupActionRequest | PutScheduledUpdateGroupActionRequest | putScheduledUpdateGroupActionRequest |
PutScheduledUpdateGroupActionResponse
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
PutScheduledUpdateGroupActionResponse putScheduledUpdateGroupActionPost(putScheduledUpdateGroupActionRequest)
스케쥴액션생성/수정
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
PutScheduledUpdateGroupActionRequest putScheduledUpdateGroupActionRequest = new PutScheduledUpdateGroupActionRequest(); // PutScheduledUpdateGroupActionRequest | putScheduledUpdateGroupActionRequest
try {
// Handler Successful response
ApiResponse<PutScheduledUpdateGroupActionResponse> result = apiInstance.putScheduledUpdateGroupActionPost(putScheduledUpdateGroupActionRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
putScheduledUpdateGroupActionRequest | PutScheduledUpdateGroupActionRequest | putScheduledUpdateGroupActionRequest |
PutScheduledUpdateGroupActionResponse
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
ResumeProcessesResponse resumeProcessesGet(resumeProcessesRequest)
프로세스재시작
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
ResumeProcessesRequest resumeProcessesRequest = new ResumeProcessesRequest(); // ResumeProcessesRequest | resumeProcessesRequest
try {
// Handler Successful response
ApiResponse<ResumeProcessesResponse> result = apiInstance.resumeProcessesGet(resumeProcessesRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
resumeProcessesRequest | ResumeProcessesRequest | resumeProcessesRequest |
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
ResumeProcessesResponse resumeProcessesPost(resumeProcessesRequest)
프로세스재시작
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
ResumeProcessesRequest resumeProcessesRequest = new ResumeProcessesRequest(); // ResumeProcessesRequest | resumeProcessesRequest
try {
// Handler Successful response
ApiResponse<ResumeProcessesResponse> result = apiInstance.resumeProcessesPost(resumeProcessesRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
resumeProcessesRequest | ResumeProcessesRequest | resumeProcessesRequest |
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
SetDesiredCapacityResponse setDesiredCapacityGet(setDesiredCapacityRequest)
기대용량설정
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
SetDesiredCapacityRequest setDesiredCapacityRequest = new SetDesiredCapacityRequest(); // SetDesiredCapacityRequest | setDesiredCapacityRequest
try {
// Handler Successful response
ApiResponse<SetDesiredCapacityResponse> result = apiInstance.setDesiredCapacityGet(setDesiredCapacityRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
setDesiredCapacityRequest | SetDesiredCapacityRequest | setDesiredCapacityRequest |
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
SetDesiredCapacityResponse setDesiredCapacityPost(setDesiredCapacityRequest)
기대용량설정
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
SetDesiredCapacityRequest setDesiredCapacityRequest = new SetDesiredCapacityRequest(); // SetDesiredCapacityRequest | setDesiredCapacityRequest
try {
// Handler Successful response
ApiResponse<SetDesiredCapacityResponse> result = apiInstance.setDesiredCapacityPost(setDesiredCapacityRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
setDesiredCapacityRequest | SetDesiredCapacityRequest | setDesiredCapacityRequest |
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
SuspendProcessesResponse suspendProcessesGet(suspendProcessesRequest)
프로세스일시정지
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
SuspendProcessesRequest suspendProcessesRequest = new SuspendProcessesRequest(); // SuspendProcessesRequest | suspendProcessesRequest
try {
// Handler Successful response
ApiResponse<SuspendProcessesResponse> result = apiInstance.suspendProcessesGet(suspendProcessesRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
suspendProcessesRequest | SuspendProcessesRequest | suspendProcessesRequest |
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
SuspendProcessesResponse suspendProcessesPost(suspendProcessesRequest)
프로세스일시정지
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
SuspendProcessesRequest suspendProcessesRequest = new SuspendProcessesRequest(); // SuspendProcessesRequest | suspendProcessesRequest
try {
// Handler Successful response
ApiResponse<SuspendProcessesResponse> result = apiInstance.suspendProcessesPost(suspendProcessesRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
suspendProcessesRequest | SuspendProcessesRequest | suspendProcessesRequest |
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
UpdateAutoScalingGroupResponse updateAutoScalingGroupGet(updateAutoScalingGroupRequest)
오토스케일링그룹수정
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
UpdateAutoScalingGroupRequest updateAutoScalingGroupRequest = new UpdateAutoScalingGroupRequest(); // UpdateAutoScalingGroupRequest | updateAutoScalingGroupRequest
try {
// Handler Successful response
ApiResponse<UpdateAutoScalingGroupResponse> result = apiInstance.updateAutoScalingGroupGet(updateAutoScalingGroupRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
updateAutoScalingGroupRequest | UpdateAutoScalingGroupRequest | updateAutoScalingGroupRequest |
UpdateAutoScalingGroupResponse
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined
UpdateAutoScalingGroupResponse updateAutoScalingGroupPost(updateAutoScalingGroupRequest)
오토스케일링그룹수정
// Import classes:
// import com.ncloud.vautoscaling.ApiClient;
// import com.ncloud.vautoscaling.ApiResponse;
// import com.ncloud.vautoscaling.auth.PropertiesFileCredentialsProvider;
// import com.ncloud.vautoscaling.marshaller.JsonMarshaller;
// import com.ncloud.vautoscaling.marshaller.XmlMarshaller;
// import com.ncloud.vautoscaling.marshaller.FormMarshaller;
// import com.ncloud.vautoscaling.exception.ApiException;
// import com.ncloud.vautoscaling.exception.SdkException;
// import com.ncloud.vautoscaling.model.*;
// import com.ncloud.vautoscaling.api.V2Api;
ApiClient apiClient = new ApiClient.ApiClientBuilder()
.addMarshaller(JsonMarshaller.getInstance())
.addMarshaller(XmlMarshaller.getInstance())
.addMarshaller(FormMarshaller.getInstance())
.setCredentials(new PropertiesFileCredentialsProvider("your-credentials-properties-file").getCredentials())
.setLogging(true)
.build();
V2Api apiInstance = new V2Api(apiClient);
UpdateAutoScalingGroupRequest updateAutoScalingGroupRequest = new UpdateAutoScalingGroupRequest(); // UpdateAutoScalingGroupRequest | updateAutoScalingGroupRequest
try {
// Handler Successful response
ApiResponse<UpdateAutoScalingGroupResponse> result = apiInstance.updateAutoScalingGroupPost(updateAutoScalingGroupRequest);
} catch (ApiException e) {
// Handler Failed response
int statusCode = e.getHttpStatusCode();
Map<String, List<String>> responseHeaders = e.getHttpHeaders();
InputStream byteStream = e.getByteStream();
e.printStackTrace();
} catch (SdkException e) {
// Handle exceptions that occurred before communication with the server
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
updateAutoScalingGroupRequest | UpdateAutoScalingGroupRequest | updateAutoScalingGroupRequest |
UpdateAutoScalingGroupResponse
- Content-Type: application/x-www-form-urlencoded
- Accept: Not defined