Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 2.47 KB

SystemLogsService.md

File metadata and controls

44 lines (29 loc) · 2.47 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
GetSystemLogsAsync Gets the System Logs

GetSystemLogsAsync

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

using Salad.Cloud.SDK;
using Salad.Cloud.SDK.Config;
using Environment = Salad.Cloud.SDK.Http.Environment;

var config = new SaladCloudSdkConfig{
    Environment = Environment.Default
};

var client = new SaladCloudSdkClient(config);

var response = await client.SystemLogs.GetSystemLogsAsync("swsj5dkyyw", "a5xp2xbkltsrb1gyvruaqvvwd5onmy71o9wj-qe9t5ayz4g85", "jm88ew1l7vlqq7ldjxvyv2t81idvvr61j8rx5e7nek5ai");

Console.WriteLine(response);