このバージョンの表示
get
/management/weblogic/{version}
このバージョンを表示します。
ノート: このWebLogicサーバー・ドメインと管理対象サーバーの管理に使用されるリソース・ツリーへのリンクも返されます。このリソース・ツリーはWLSTのBeanツリーに似ており、構成の表示と編集を行って実行時の動作をモニターできます。
リクエスト
パス・パラメータ
- version: string
WebLogic RESTインタフェースのバージョン。
問合せパラメータ
- excludeFields (オプション): string
excludeFields問合せパラメータを使用して、レスポンスで返されるフィールドを制限します。フィールド名のカンマ区切りリストです。指定すると、リストに名前がないフィールドのみが返されます。指定しないと、すべてのフィールドが戻されます(fields問合せパラメータが指定されていない場合)。ノート: excludeFieldsを指定する場合、fieldsは指定できません。
- excludeLinks (オプション): string
excludeLinks問合せパラメータを使用して、レスポンスで返されるリンクを制限します。リンク関係名のカンマ区切りリストです。指定すると、リストに関係名前がないリンクのみが返されます。指定しないと、すべてのリンクが戻されます(links問合せパラメータが指定されていない場合)。ノート: excludeLinksを指定する場合、linksは指定できません。
- fields (オプション): string
fields問合せパラメータを使用して、レスポンスで返されるフィールドを制限します。フィールド名のカンマ区切りリストです。指定すると、名前が一致するフィールドのみが返されます。指定しないと、すべてのフィールドが戻されます(excludeFields問合せパラメータが指定されていない場合)。ノート: fieldsを指定する場合、excludeFieldsは指定できません。
- links (オプション): string
links問合せパラメータを使用して、レスポンスで返されるリンクを制限します。リンク関係名のカンマ区切りリストです。指定すると、関係名が一致するリンクのみが返されます。指定しないと、すべてのリンクが戻されます(excludeLinks問合せパラメータが指定されていない場合)。ノート: linksを指定する場合、excludeLinksは指定できません。
セキュリティ
- Admin: basic
タイプ:
Basic説明:A user in the Admin security role. - Deployer: basic
タイプ:
Basic説明:A user in the Deployer security role. - Monitor: basic
タイプ:
Basic説明:A user in the Monitor security role. - Operator: basic
タイプ:
Basic説明:A user in the Operator security role.
レスポンス
サポートされるメディア・タイプ
- application/json
200レスポンス
このバージョンを返します。
このメソッドは次のリンクを返すことができます。
- rel=currentUser uri=/management/weblogic/{version}/currentUser
- rel=domainConfig uri=/management/weblogic/{version}/domainConfig
- rel=domainRuntime uri=/management/weblogic/{version}/domainRuntime
- rel=edit uri=/management/weblogic/{version}/edit
- rel=serverConfig uri=/management/weblogic/{version}/serverConfig
- rel=serverRuntime uri=/management/weblogic/{version}/serverRuntime
ルート・スキーマ: Version
タイプ:
objectWebLogicサーバーのリソースのバージョンを示します。
- isLatest (オプション): boolean
これがデフォルト・バージョンの場合
True。 - lifecycle (オプション): string
指定可能な値:
[ "active", "deprecated" ]このバージョンのライフサイクル:
activeまたはdeprecated - version (オプション): string
このバージョンの名前。
例
最新バージョンを表示します。
この例では、GETメソッドを使用して最新バージョンを表示します。
リクエストの例
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -X GET http://localhost:7001/management/weblogic/latest
レスポンスの例
HTTP/1.1 200 OK
Response Body:
{
"links": [
{
"rel": "parent",
"href": "http:\//localhost:7001/management/weblogic"
},
{
"rel": "self",
"href": "http:\//localhost:7001/management/weblogic/latest"
},
{
"rel": "canonical",
"href": "http:\//localhost:7001/management/weblogic/latest"
},
{
"rel": "edit",
"href": "http:\//localhost:7001/management/weblogic/latest/edit"
},
{
"rel": "domainConfig",
"href": "http:\//localhost:7001/management/weblogic/latest/domainConfig"
},
{
"rel": "domainRuntime",
"href": "http:\//localhost:7001/management/weblogic/latest/domainRuntime"
},
{
"rel": "serverRuntime",
"href": "http:\//localhost:7001/management/weblogic/latest/serverRuntime"
},
{
"rel": "serverConfig",
"href": "http:\//localhost:7001/management/weblogic/latest/serverConfig"
},
{
"rel": "currentUser",
"href": "http:\//localhost:7001/management/weblogic/latest/currentUser"
}
],
"version": "12.2.1.4.0",
"isLatest": true,
"lifecycle": "active"
}
特定のバージョンを表示します。
この例では、GETメソッドを使用して特定のバージョンを表示します。
リクエストの例
curl -v \ --user admin:admin123 \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -X GET http://localhost:7001/management/weblogic/12.2.1.3.0
レスポンスの例
HTTP/1.1 200 OK
Response Body:
{
"links": [
{
"rel": "parent",
"href": "http:\//localhost:7001/management/weblogic"
},
{
"rel": "self",
"href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0"
},
{
"rel": "canonical",
"href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0"
},
{
"rel": "edit",
"href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0/edit"
},
{
"rel": "domainConfig",
"href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0/domainConfig"
},
{
"rel": "domainRuntime",
"href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0/domainRuntime"
},
{
"rel": "serverRuntime",
"href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0/serverRuntime"
},
{
"rel": "serverConfig",
"href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0/serverConfig"
},
{
"rel": "currentUser",
"href": "http:\//localhost:7001/management/weblogic/12.2.1.3.0/currentUser"
}
],
"version": "12.2.1.3.0",
"isLatest": false,
"lifecycle": "deprecated"
}
先頭に戻る