博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
openstack4j
阅读量:6188 次
发布时间:2019-06-21

本文共 1085 字,大约阅读时间需要 3 分钟。

Identity
// V2 authenticationOSClientV2 os = OSFactory.builderV2() .endpoint("http://127.0.0.1:5000/v2.0") .credentials("admin","secret") .tenantName("admin") .authenticate(); // V3 authentication OSClientV3 os = OSFactory.builderV3() .endpoint("http://127.0.0.1:5000/v3") .credentials("admin", "secret", Identifier.byName("Default")) .scopeToProject(Identifier.byName("admin")) .authenticate();
Compute
// Create a Server Model ObjectServer server = Builders.server() .name("Ubuntu 2") .flavor("large") .image("imageId") .build(); // Boot the Server Server server = os.compute().servers().boot(server); // Create a Snapshot os.compute().servers().createSnapshot("id", "name");
Image
// Create an ImageImage image = os.images().create(Builders.image() .name("Cirros 0.3.0 x64") .isPublic(true) .containerFormat(ContainerFormat.BARE) .diskFormat(DiskFormat.QCOW2) .build() ), Payloads.create(new File("cirros.img")));
Network
// Create a PortPort port = os.networking().port() .create(Builders.port() .name("port1") .networkId("networkId") .fixedIp("52.51.1.253", "subnetId") .build());

转载地址:http://zzoda.baihongyu.com/

你可能感兴趣的文章
100-88
查看>>
android4.0.3 编译lichee 报错dhd-cdc-sdmmc-gpl-3.0.8问题
查看>>
crc16 - 产生Modbus RTU格式的CRC码
查看>>
招聘又来了,这次推荐有奖哦
查看>>
我的友情链接
查看>>
Linux下ssh秘钥方式登录远程服务器
查看>>
golang test测试使用
查看>>
【Apache学习】编译安装httpd2.4 含傻瓜版自动安装脚本
查看>>
Python classmethod(类方法) 和 类属性 静态方法(缺少)
查看>>
JSP里的9大内置对象,背过,应聘笔试会用。
查看>>
取消单元格的点击事件
查看>>
SWF 文件不能本地访问 只有仅限于文件系统的 SWF 文件
查看>>
Bootstrap3 栅格系统-实例:响应列重置(Responsive column resets)
查看>>
(转载)理解C#对象生命周期
查看>>
详解cookie与session的区别,讲得最透彻的一篇文章
查看>>
如何下载scp、wget、inotify及如何偷包
查看>>
[jsp学习笔记]jstl标签的使用
查看>>
ABBYY FineReader 12如何识别包含非常规符号的文本
查看>>
【Z】使用SQL Server的OPENROWSET函数
查看>>
Activiti流程变量
查看>>