Rumah >Java >javaTutorial >Panduan Pengurusan ECS Awan Huawei: Antara Muka Pantas Contoh Kod Java
Panduan Pengurusan ECS Awan Huawei: Sampel Kod Java untuk Menyambungkan Antara Muka Dengan Pantas
Abstrak: Artikel ini akan memperkenalkan cara menggunakan sampel kod Java untuk menyambung dengan cepat ke antara muka Pelayan Awan Elastik Awan (ECS) Huawei. Dengan mempelajari artikel ini, anda akan belajar cara menggunakan kod Java untuk mengurus kejadian ECS dan melaksanakan operasi seperti mencipta, bertanya, memulakan dan menghentikan kejadian. Contoh kod akan membantu anda memahami dengan lebih baik cara menggunakan SDK yang disediakan oleh Huawei Cloud untuk mengendalikan antara muka ECS.
Pengenalan:
Huawei Cloud Elastic Cloud Server (ECS) menyediakan satu siri antara muka untuk memudahkan pengguna mengurus kejadian ECS melalui kod. Artikel ini akan menggunakan contoh kod Java untuk memperkenalkan cara menyambung ke antara muka Huawei Cloud ECS dan melaksanakan operasi biasa.
import com.huaweicloud.sdk.core.AuthCredentials; import com.huaweicloud.sdk.core.auth.BasicCredentials; import com.huaweicloud.sdk.core.exception.ClientRequestException; import com.huaweicloud.sdk.core.exception.ServiceResponseException; import com.huaweicloud.sdk.ecs.v2.EcsClient; import com.huaweicloud.sdk.ecs.v2.model.*; public class CreateEcsExample { public static void main(String[] args) { AuthCredentials credentials = new BasicCredentials() .withAk("<your access key>") .withSk("<your secret key>") .withProjectId("<your project ID>"); EcsClient client = EcsClient.newBuilder() .withCredential(credentials) .withRegion("<your region ID>") .build(); CreateServersRequest request = new CreateServersRequest() .withBody(new CreateServersRequestBody() .withName("test-ecs") .withImageRef("<image ID>") .withFlavorRef("<flavor ID>") .withAvailabilityZone("<availability zone>") .withAdminPass("<admin password>") ); try { CreateServersResponse response = client.createServers(request); System.out.println("Create ECS instance succeeded, ECS ID: " + response.getServerIds()); } catch (ServiceResponseException e) { System.err.println(e.getMessage()); } catch (ClientRequestException e) { System.err.println(e.getMessage()); } } }
Dalam contoh ini, anda perlu menggantikan e8b415237f3ff7115a1cb1096f24ff39
, fbec81a3752dc2c5422c3c6cb0d13ad7
, 66df7f1f282cbd04a385e84489eb008a
, d2b4ba975b8396327ba8bf7400c29090, fb6281c84397478e56e1f4aeff6796ae
, ba668d8fa9b8e58684c1c5e462eb88c5
dan 1dce10693e9c17aa834d183bb73f68cf kod> Untuk maklumat anda sendiri. Selepas menjalankan kod, tika ECS bernama <code>test-ecs
akan dibuat dan ID tika akan dikembalikan. 78faa301cc2e3849f73f43da60b6602b
、496368d73db885d7bf0a8d2901c6ebf7
、a5c5db44bbfcdf9638f44052826bd3f1
、deb1f3be78431abe3b842b323a50434d
、4763926fbd8b476b5324276b5a2dc7f6
、a93661bfe877cfe28e299d070b8e7c29
、1c641c8a24ac3350fdd974c3fc7dc092
和a60f0a2c7fd8c7a011aeebb209559cfe
为您自己的信息。运行代码后,将会创建一个名为 test-ecs
的ECS实例,并返回实例的ID。
import com.huaweicloud.sdk.core.AuthCredentials; import com.huaweicloud.sdk.core.auth.BasicCredentials; import com.huaweicloud.sdk.core.exception.ClientRequestException; import com.huaweicloud.sdk.core.exception.ServiceResponseException; import com.huaweicloud.sdk.ecs.v2.EcsClient; import com.huaweicloud.sdk.ecs.v2.model.*; public class QueryEcsExample { public static void main(String[] args) { AuthCredentials credentials = new BasicCredentials() .withAk("<your access key>") .withSk("<your secret key>") .withProjectId("<your project ID>"); EcsClient client = EcsClient.newBuilder() .withCredential(credentials) .withRegion("<your region ID>") .build(); ListServersDetailsRequest request = new ListServersDetailsRequest(); try { ListServersDetailsResponse response = client.listServersDetails(request); System.out.println("Query ECS instance details succeeded, ECS list: " + response.getServers()); } catch (ServiceResponseException e) { System.err.println(e.getMessage()); } catch (ClientRequestException e) { System.err.println(e.getMessage()); } } }
同样,将代码中的 78faa301cc2e3849f73f43da60b6602b
、496368d73db885d7bf0a8d2901c6ebf7
、a5c5db44bbfcdf9638f44052826bd3f1
和deb1f3be78431abe3b842b323a50434d
e8b415237f3ff7115a1cb1096f24ff39
, fbec81a3752dc2c5422c3c6cb0d13ad7
dan 139beb7768287fc945c7371a76e0e7df code> dengan maklumat anda sendiri. Selepas menjalankan kod, butiran contoh ECS akan dikembalikan.
Operasi lain
Atas ialah kandungan terperinci Panduan Pengurusan ECS Awan Huawei: Antara Muka Pantas Contoh Kod Java. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!