サブアカウントリストの照会
- 印刷する
- PDF
サブアカウントリストの照会
- 印刷する
- PDF
記事の要約
この要約は役に立ちましたか?
ご意見ありがとうございます
サブアカウントリストを照会します。
API
- GET /sub-accounts
リクエスト
Parameters
パラメータ | 必須有無 | タイプ | 制限事項 | 説明 |
---|---|---|---|---|
searchColumn | N | String | loginId, name, subAccountNo | - 検索カラム loginId, name, subAccountNo |
searchWord | N | String | 検索キーワード | |
page | N | int | - ページ番号 デフォルト値: 0 | |
size | N | int | - 結果リストのサイズ デフォルト値: 10 |
レスポンス
{
"hasNext": "boolean",
"hasPrevious": "boolean",
"isFirst": "boolean",
"isLast": "boolean",
"items": [
{
"nrn": "string",
"active": "boolean",
"canAPIGatewayAccess": "boolean",
"canConsoleAccess": "boolean",
"consolePermitIps": [
"string"
],
"createTime": "string",
"email": "string",
"lastLoginTime": "string",
"loginId": "string",
"memo": "string",
"modifiedTime": "string",
"name": "string",
"needPasswordReset": "boolean",
"subAccountNo": "integer",
"subAccountId": "string",
"useConsolePermitIp": "boolean",
"useApiAllowSource": "boolean",
"apiAllowSources": [
{
"type": "string",
"source": "string"
}
],
}
],
"page": "integer",
"totalItems": "integer",
"totalPages": "integer"
}
項目 | タイプ | 説明 | 備考 |
---|---|---|---|
hasNext | boolean | 次のページの存在有無 | |
hasPrevious | boolean | 以前のページの存在有無 | |
isFirst | boolean | 最初のページの有無 | |
isLast | boolean | 最後のページの有無 | |
items | array | ||
items.nrn | string | Ncloudのリソースを表現するための Naming Rule | |
items.active | boolean | Sub Account状態(true: 有効、false: 無効) | |
items.canAPIGatewayAccess | boolean | - API Gateway Access Access Keyを作成し、当該キーで API Gatewayに登録された APIを使用可能 | |
items.canConsoleAccess | boolean | - Console Access サブアカウントが管理コンソールにアクセスできるように設定 | |
items.consolePermitIps | array | コンソールにアクセスできる IPアドレス帯域リスト | |
items.createTime | string | 作成日時 2019-08-10T13:21:00Z | |
items.email | string | メールアドレス | |
items.lastLoginTime | string | 最終アクセス日時 2019-08-10T13:21:00Z | |
items.loginId | string | ログイン ID | |
items.memo | string | メモ(max: 100byte) | |
items.modifiedTime | string | 最終変更日時 2019-08-10T13:21:00Z | |
items.name | string | 名前 | |
items.needPasswordReset | boolean | - パスワード再設定の要否 作成されたサブアカウントでログインすると、新しいパスワードに変更するように案内 | |
items.subAccountNo | integer | サブアカウント No | 検索時に一致するものだけを照会 |
items.subAccountId | string | サブアカウント ID | |
items.useConsolePermitIp | boolean | コンソールアクセスの際に IPアドレス帯域制限の使用有無 | |
items.useApiAllowSource | boolean | API利用の際にアクセス制限を利用可能 | |
items.apiAllowSources | array | APIアクセス可能なリスト | |
items.apiAllowSources[].type | string | アクセス可能なソースタイプ(IP、VPC、VPC_SERVER) | |
items.apiAllowSources[].source | string | アクセス可能なソース情報(IP、InstanceNo) | |
page | integer | page番号 | |
totalItems | integer | 全体の item件数 | |
totalPages | integer | 全体の page件数 |
この記事は役に立ちましたか?