# tmcloud-sdk-net
**Repository Path**: HuaweiCloudDeveloper/tmcloud-sdk-net
## Basic Information
- **Project Name**: tmcloud-sdk-net
- **Description**: The TM Cloud SDK allows you to easily work with TM Cloud services such as Elastic Compute Service (ECS) and Virtual Private Cloud (VPC) without the need to handle API related tasks.
- **Primary Language**: Unknown
- **License**: Apache-2.0
- **Default Branch**: master-dev
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2023-11-14
- **Last Updated**: 2025-06-16
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
TM Cloud .Net Software Development Kit (.Net SDK)
The TM Cloud .Net SDK allows you to easily work with TM Cloud services such as Elastic Compute Service (ECS) and
Virtual Private Cloud(VPC) without the need to handle API related tasks.
This document introduces how to obtain and use TM Cloud .Net SDK.
## Requirements
- To use TM Cloud .NET SDK, you must have TM Cloud account as well as the Access Key (AK) and Secret key (SK) of the
TM Cloud account. You can create an Access Key in the TM Cloud console.
- To use TM Cloud .NET SDK to access the APIs of specific service, please make sure you do have activated the service
in [TM Cloud console](https://console.alphaedge.tmone.com.my/) if needed.
- The .NET SDK requires:
- **.NET Standard 2.0** or above
- **C# 4.0** or above
## Install .Net SDK
Run the following commands to install .Net SDK:
You must install `TMCloud.SDK.Core` library no matter which product development kit you need to use. Take using VPC
SDK for example, you need to install `TMCloud.SDK.Core` library and `TMCloud.SDK.Vpc` library:
- Use .NET CLI
``` bash
dotnet add package TMCloud.SDK.Core
dotnet add package TMCloud.SDK.Vpc
```
- Use Package Manager
``` bash
Install-Package TMCloud.SDK.Core
Install-Package TMCloud.SDK.Vpc
```
## Code example
- The following example shows how to query a list of VPC in a specific region, you need to substitute your
real `{Service}Client` for `VpcClient` in actual use.
- Substitute the values for `{your ak string}`, `{your sk string}`, `{your endpoint string}` and `{your project id}`.
```csharp
using System;
using TMCloud.SDK.Core;
using TMCloud.SDK.Core.Auth;
// Import the specified {Service}, take Vpc as an example
using TMCloud.SDK.Vpc.V2;
using TMCloud.SDK.Vpc.V2.Model;
// Import the namespace for logging
using Microsoft.Extensions.Logging;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
const string ak = "{your ak string}";
const string sk = "{your sk string}";
const string endpoint = "{your endpoint string}";
const string projectId = "{your projectID string}";
Credentials auth = new BasicCredentials(ak, sk, projectId);
var config = HttpConfig.GetDefaultConfig();
config.IgnoreSslVerification = true;
VpcClient vpcClient = VpcClient.NewBuilder()
.WithCredential(auth)
.WithEndPoint(endpoint)
.WithHttpConfig(config)
.WithLogging(LogLevel.Information)
.Build();
var request = new ListVpcsRequest
{
Limit = 1
};
try
{
var response = vpcClient.ListVpcs(request);
Console.WriteLine(JsonUtils.Serialize(response.Vpcs));
}
catch (RequestTimeoutException requestTimeoutException)
{
Console.WriteLine(requestTimeoutException.ErrorMessage);
}
catch (ServiceResponseException serviceResponseException)
{
Console.WriteLine(serviceResponseException.HttpStatusCode);
Console.WriteLine(serviceResponseException.ErrorCode);
Console.WriteLine(serviceResponseException.ErrorMsg);
}
catch (ConnectionException connectionException)
{
Console.WriteLine(connectionException.ErrorMessage);
}
}
}
}
```
## Changelog
Detailed changes for each released version are documented in
the [CHANGELOG.md](https://github.com/tmcloud-sdk/tmcloud-sdk-net/blob/master/CHANGELOG.md).
## User Manual [:top:](#tm-cloud-net-software-development-kit-net-sdk)
* [1. Client Configuration](#1-client-configuration-top)
* [1.1 Default Configuration](#11-default-configuration-top)
* [1.2 Network Proxy](#12-network-proxy-top)
* [1.3 Timeout Configuration](#13-timeout-configuration-top)
* [1.4 SSL Certification](#14-ssl-certification-top)
* [2. Credentials Configuration](#2-credentials-configuration-top)
* [2.1 Use Permanent AK&SK](#21-use-permanent-aksk-top)
* [2.2 Use Temporary AK&SK](#22-use-temporary-aksk-top)
* [3. Client Initialization](#3-client-initialization-top)
* [3.1 Initialize the client with specified Endpoint](#31-initialize-the-serviceclient-with-specified-endpoint-top)
* [4. Send Requests and Handle Responses](#4-send-requests-and-handle-responses-top)
* [4.1 Exceptions](#41-exceptions-top)
* [5. Use Asynchronous Client](#5-use-asynchronous-client-top)
* [6. Troubleshooting](#6-troubleshooting-top)
* [6.1 Access Log](#61-access-log-top)
* [6.2 Original HTTP Listener](#62-original-http-listener-top)
* [7. FAQ](#7-faq-top)
### 1. Client Configuration [:top:](#user-manual-top)
#### 1.1 Default Configuration [:top:](#user-manual-top)
```csharp
// Use default configuration
var config = HttpConfig.GetDefaultConfig();
```
#### 1.2 Network Proxy [:top:](#user-manual-top)
Use network proxy if needed.
- Only HTTP proxy is supported if you have assigned proxy port when configuring proxy.
``` csharp
config.ProxyHost = "proxy.tmone.com.my";
// assign proxy port
config.ProxyPort = 8080;
config.ProxyUsername = "test";
config.ProxyPassword = "test";
```
- Both HTTP and HTTPS proxy are supported if proxy port is unassigned when configuring proxy.
``` csharp
config.ProxyHost = "https://proxy.tmone.com.my:8080";
config.ProxyUsername = "test";
config.ProxyPassword = "test";
```
#### 1.3 Timeout Configuration [:top:](#user-manual-top)
``` csharp
// The default timeout is 120 seconds, which can be adjusted as needed
config.Timeout = 120;
```
#### 1.4 SSL Certification [:top:](#user-manual-top)
``` csharp
// Skip SSL certifaction checking while using https protocal if needed
config.IgnoreSslVerification = true;
```
### 2. Credentials Configuration [:top:](#user-manual-top)
There are two types of TM Cloud services, `regional` services and `global` services.
Global services contain IAM, TMS, EPS.
For `regional` services' authentication, projectId is required to initialize BasicCredentials.
For `global` services' authentication, domainId is required to initialize GlobalCredentials.
**Parameter description**:
- `ak` is the access key ID for your account.
- `sk` is the secret access key for your account.
- `projectId` is the ID of your project depending on the region you want to operate.
- `domainId` is the account ID of TM Cloud.
- `securityToken` is the security token when using temporary AK/SK.
You could use permanent AK and SK **or** use temporary AK and SK and SecurityToken to complete credentials'
configuration.
#### 2.1 Use Permanent AK&SK [:top:](#user-manual-top)
``` csharp
// Regional services
Credentials basicCredentials = new BasicCredentials(ak, sk, projectId);
// Global services
Credentials globalCredentials = new GlobalCredentials(ak, sk, domainId);
```
#### 2.2 Use Temporary AK&SK [:top:](#user-manual-top)
It's required to obtain temporary AK&SK and security token first, which could be obtained through
permanent AK&SK or through an agency.
- Obtaining a temporary access key and security token through token, you could refer to
document: [Obtaining a Temporary AK/SK](https://support.alphaedge.tmone.com.my/en-us/api/iam/en-us_topic_0097949518.html). The API mentioned in the document above
corresponds to the method of `CreateTemporaryAccessKeyByToken` in IAM SDK.
``` csharp
// Regional services
Credentials basicCredentials = new BasicCredentials(ak, sk, projectId).WithSecurityToken(securityToken);
// Global services
Credentials globalCredentials = new GlobalCredentials(ak, sk, domainId).WithSecurityToken(securityToken);
```
### 3. Client Initialization [:top:](#user-manual-top)
There are two ways to initialize the {Service}Client, you could choose one you preferred.
#### 3.1 Initialize the {Service}Client with specified Endpoint [:top:](#user-manual-top)
``` csharp
// Specify the endpoint, take the endpoint of VPC service in region of cn-north-4 for example
String endpoint = "https://vpc.my-kualalumpur-1.alphaedge.tmone.com.my";
// Initialize the credentials, you should provide projectId or domainId in this way, take initializing BasicCredentials for example
Credentials basicCredentials = new BasicCredentials(ak, sk, projectId);
// Initialize specified {Service}Client instance, take initializing the regional service VPC's VpcClient for example
VpcClient vpcClient = VpcClient.NewBuilder()
.WithCredential(basicCredentials)
.WithEndPoint(endpoint)
.WithHttpConfig(config)
.Build();
```
### 4. Send Requests and Handle Responses [:top:](#user-manual-top)
```csharp
// Send request and print response, take interface of ListVpcs for example
var request = new ListVpcsRequest
{
Limit = 1,
};
var response = vpcClient.ListVpcs(request)
Console.WriteLine(JsonUtils.Serialize(response.Vpcs));
```
#### 4.1 Exceptions [:top:](#user-manual-top)
| Level 1 | Notice | Level 2 | Notice |
| :---- | :---- | :---- | :---- |
| ConnectionException | Connection error | HostUnreachableException | Host is not reachable |
| | | SslHandShakeException | SSL certification error |
| RequestTimeoutException | Request timeout | CallTimeoutException | timeout for single request |
| | | RetryOutageException | no response after retrying |
| ServiceResponseException | service response error | ServerResponseException | server inner error, http status code: [500,] |
| | | ClientRequestException | invalid request, http status code: [400, 500) |
```csharp
// Handle ClientRequestExceptions
try
{
var request = new ListVpcsRequest
{
Limit = 1,
};
var response = vpcClient.ListVpcs(request);
Console.WriteLine(JsonUtils.Serialize(response.Vpcs));
}
catch (ServiceResponseException serviceResponseException)
{
Console.WriteLine(serviceResponseException.HttpStatusCode);
Console.WriteLine(serviceResponseException.ErrorCode);
Console.WriteLine(serviceResponseException.ErrorMsg);
Console.WriteLine(serviceResponseException.RequestId);
}
```
### 5. Use Asynchronous Client [:top:](#user-manual-top)
```csharp
// Initialize asynchronous client instance, take VpcAsyncClient for example
var vpcClient = VpcAsyncClient.NewBuilder()
.WithCredential(auth)
.WithEndPoint(endpoint)
.WithHttpConfig(config)
.Build();
// send asynchronous request
var future = vpcClient.ListVpcsAsync(new ListVpcsRequest()
{
Limit = 1
});
// get asynchronous response
var response = future.Result;
Console.WriteLine(JsonUtils.Serialize(response.Vpcs));
```
### 6. Troubleshooting [:top:](#user-manual-top)
SDK supports `Access` log and `Debug` log which could be configured manually.
#### 6.1 Access Log [:top:](#user-manual-top)
SDK supports print access log which could be enabled by manual configuration, the log could be output to the console.
For example:
``` csharp
var vpcClient = VpcClient.NewBuilder()
.WithCredential(auth)
.WithEndPoint(endpoint)
// configure log level and request will be print on the console
.WithLogging(LogLevel.Information)
.WithHttpConfig(config)
.Build();
```
After enabled log, the SDK will print the access log by default, every request will be recorded to the console like:
``` text
info: System.Net.Http.HttpClient.SdkHttpClient.LogicalHandler[100]
Start processing HTTP request GET https://vpc.my-kualalumpur-1.alphaedge.tmone.com.my/v1/076958154900d2492f8bc0197405c803/vpcs?limit=1
info: System.Net.Http.HttpClient.SdkHttpClient.ClientHandler[100]
Sending HTTP request GET https://vpc.my-kualalumpur-1.alphaedge.tmone.com.my/v1/076958154900d2492f8bc0197405c803/vpcs?limit=1
info: System.Net.Http.HttpClient.SdkHttpClient.ClientHandler[101]
Received HTTP response after 517.5326ms - OK
info: System.Net.Http.HttpClient.SdkHttpClient.LogicalHandler[101]
End processing HTTP request after 543.6428ms - OK
```
#### 6.2 Original HTTP Listener [:top:](#user-manual-top)
In some situation, you may need to debug your http requests, original http request and response information will be
needed. The SDK provides a listener function to obtain the original encrypted http request and response information.
> :warning: Warning: The original http log information is used in debugging stage only, please do not print the original http header or body in the production environment. These log information is not encrypted and contains sensitive data such as the password of your ECS virtual machine, or the password of your IAM user account, etc. When the response body is binary content, the body will be printed as "***" without detailed information.
```csharp
private void RequestHandler(HttpRequestMessage message, ILogger logger)
{
logger.LogDebug(message.ToString());
}
private void ResponseHandler(HttpResponseMessage message, ILogger logger)
{
logger.LogDebug(message.ToString());
}
var vpcClient = VpcClient.NewBuilder()
.WithCredential(auth)
.WithEndPoint(endpoint)
.WithLogging(LogLevel.Debug)
.WithHttpConfig(config)
.WithHttpHandler(new HttpHandler()
.AddRequestHandler(RequestHandler)
.AddResponseHandler(ResponseHandler))
.Build();
```
**where:**
HttpHandler supports method `AddRequestHandler` and `AddResponseHandler`.
### 7. FAQ [:top:](#user-manual-top)
Use .Net Framework 4.7 to integrate .Net SDK, a dead lock occurs
**[Symptom]**: When using synchronized client to call an interface, and the program has been started, but where is no
error message or timeout occurs.
**[Cause]**: The inner implementation of sending requests in synchronized client of SDK is to use an asynchronous task,
and SDK will await this task. In such scenario, **deadlock** occurs between the context of the .Net Framework UI and the
asynchronous task context of the SDK. As a result, the asynchronous task of the SDK cannot be
activated. [Original article](https://blog.stephencleary.com/2012/07/dont-block-on-async-code.html)
**[Solution]**: **Switch the synchronous client to the asynchronous client**. If the UI events and API requests are both
asynchronous, there will be no deadlock.