Skip to content

Latest commit

 

History

History
56 lines (39 loc) · 2.75 KB

SystemLogsService.md

File metadata and controls

56 lines (39 loc) · 2.75 KB

SystemLogsService

A list of all methods in the SystemLogsService service. Click on the method name to view detailed information about that method.

Methods Description
getSystemLogs Gets the System Logs

getSystemLogs

Gets the System Logs

  • HTTP Method: GET
  • Endpoint: /organizations/{organization_name}/projects/{project_name}/containers/{container_group_name}/system-logs

Parameters

Name Type Required Description
organizationName String Your organization name. This identifies the billing context for the API operation and represents a security boundary for SaladCloud resources. The organization must be created before using the API, and you must be a member of the organization.
projectName String Your project name. This represents a collection of related SaladCloud resources. The project must be created before using the API.
containerGroupName String The unique container group name

Return Type

SystemLogList

Example Usage Code Snippet

import com.salad.cloud.sdk.SaladCloudSdk;
import com.salad.cloud.sdk.config.ApiKeyAuthConfig;
import com.salad.cloud.sdk.config.SaladCloudSdkConfig;
import com.salad.cloud.sdk.models.SystemLogList;

public class Main {

  public static void main(String[] args) {
    SaladCloudSdkConfig config = SaladCloudSdkConfig
      .builder()
      .apiKeyAuthConfig(ApiKeyAuthConfig.builder().apiKey("YOUR_API_KEY").build())
      .build();

    SaladCloudSdk saladCloudSdk = new SaladCloudSdk(config);

    SystemLogList response = saladCloudSdk.systemLogs.getSystemLogs(
      "fmcz5cnnkfiyt3k5ke3wy-5gl1809s8sotrp88klv3q4l4ni7uszkt0ht2",
      "jpum7p7dqeb0o9xu",
      "nlzoet3pfl3xit2pe40saanre16q8ug0u13rmnwb7eyumc1"
    );

    System.out.println(response);
  }
}