91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

OpenStack4j中怎么實現一個對外接口

發布時間:2021-08-12 17:01:13 來源:億速云 閱讀:162 作者:Leah 欄目:云計算

OpenStack4j中怎么實現一個對外接口 ,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

在項目中增加maven依賴包

<dependency>
  <groupId>org.pacesys</groupId>
  <artifactId>openstack4j</artifactId>
  <version>3.0.3</version>
  <classifier>withdeps</classifier></dependency>

通過權限認證

import org.openstack4j.api.OSClient.OSClientV3;import org.openstack4j.openstack.OSFactory;import org.openstack4j.model.common.Identifier;

# use Identifier.byId("domainId") or Identifier.byName("example-domain")
Identifier domainIdentifier = Identifier.byId("domainId");

# unscoped authentication
# as the username is not unique across domains you need to provide the domainIdentifier
OSClientV3 os = OSFactory.builderV3()
                       .endpoint("http://127.0.0.1:5000/v3")
                       .credentials("admin","sample", domainIdentifier)
                       .authenticate();

# project scoped authentication
OSClientV3 os = OSFactory.builderV3()
                    .endpoint("http://127.0.0.1:5000/v3")
                    .credentials("admin", "secret", Identifier.byName("example-domain"))
                    .scopeToProject(Identifier.byId(projectIdentifier))
                    .authenticate();

# domain scoped authentication
# using the unique userId does not require a domainIdentifier
OSClientV3 os = OSFactory.builderV3()
                    .endpoint("http://127.0.0.1:5000/v3")
                    .credentials("userId", "secret")
                    .scopeToDomain(Identifier.byId(domainIdentifier))
                    .authenticate();

# Scoping to a project just by name isn't possible as the project name is only unique within a domain. # You can either use this as the id of the project is unique across domains OSClientV3 os = OSFactory.builderV3() .endpoint("http://127.0.0.1:5000/v3") .credentials("userId", "secret") .scopeToProject(Identifier.byName(projectName), Identifier.byName(domainName)) .authenticate(); # Or alternatively OSClientV3 os = OSFactory.builderV3() .endpoint("http://127.0.0.1:5000/v3") .credentials("userId", "secret") .scopeToDomain(Identifier.byName(domainName)) .authenticate();

常用模塊調用

// Find all UsersList<? extends User> users = os.identity().users().list();// List all TenantsList<? extends Tenant> tenants = os.identity().tenants().list();// Find all Compute FlavorsList<? extends Flavor> flavors = os.compute().flavors().list();// Find all running ServersList<? extends Server> servers = os.compute().servers().list();// Suspend a Serveros.compute().servers().action("serverId", Action.SUSPEND);// List all NetworksList<? extends Network> networks = os.networking().network().list();// List all SubnetsList<? extends Subnet> subnets = os.networking().subnet().list();// List all RoutersList<? extends Router> routers = os.networking().router().list();// List all Images (Glance)List<? extends Image> images = os.images().list();// Download the Image DataInputStream is = os.images().getAsStream("imageId");

看完上述內容,你們掌握OpenStack4j中怎么實現一個對外接口 的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

旌德县| 临沂市| 东明县| 天水市| 偃师市| 临城县| 章丘市| 遂平县| 和龙市| 巴塘县| 凉城县| 元谋县| 扎鲁特旗| 鱼台县| 合山市| 报价| 浑源县| 中方县| 昌宁县| 舒兰市| 工布江达县| 井冈山市| 京山县| 虞城县| 留坝县| 乳源| 疏附县| 岳普湖县| 延安市| 桂阳县| 东台市| 三都| 合川市| 郯城县| 府谷县| 河南省| 四子王旗| 柳江县| 松江区| 巴中市| 太和县|