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

本文共 1178 字,大约阅读时间需要 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());
posted on
2016-11-15 14:04 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/ruiy/p/6065463.html

你可能感兴趣的文章
SQL Server vNext CTP1 on Linux
查看>>
1-为 Lync Server 2010 准备 Active Directory 域服务
查看>>
SELinux安全
查看>>
NetBackup下ORACLE恢复测试方案实例解析
查看>>
【有奖征文】“失业”程序员的苦辣酸甜
查看>>
IE9是如何被FireFox4超越全球市场份额的?
查看>>
linux bunzip2命令
查看>>
敏捷个人:通过实践TOGAF来思考如何学习并应用新的方法?
查看>>
Android系统的开机画面显示过程分析(6)
查看>>
vivo Hi-Fi+QQ音乐 数字音乐市场的一剂良方
查看>>
Cocos2d-x 3.2 异步动态加载 -- 保卫萝卜开发总结
查看>>
聚焦触宝反侵权事件:中国创业者用什么护航海外市场大门
查看>>
AOP技术基础
查看>>
Android系统进程间通信(IPC)机制Binder中的Server启动过程源代码分析(2)
查看>>
Lync 小技巧-5-当前已暂停共享
查看>>
无线802.11n 2.4G与5G性能测试
查看>>
子域名信息收集攻略
查看>>
[Android]开发数独游戏思路分析过程
查看>>
SpreadJS 类Excel表格控件 - V12 新特性详解
查看>>
理解并取证:IPv6与IPv4在报文结构上的区别
查看>>