Query the total number of Huawei Cloud services available through KooCLI offline metadata. Returns the count of all supported cloud services from the cached service catalog. Triggers include: "how many Huawei Cloud services", "count Huawei Cloud services", "华为云服务总数", "华为云有多少个服务", "查询华为云服务数量".
Coding
huawei-cloud-project-list
Try itLists Huawei Cloud IAM (Identity and Access Management) projects — enumerates all projects under the authenticated account with project ID, name, domain ID, parent ID, enabled status and description, using the KooCLI `hcloud IAM KeystoneListProjects` command (primary) or the huaweicloudsdkiam Python SDK (fallback). Provides read-only project inventory for account management, resource discovery, permission review and multi-region operations planning. Use this skill whenever the user mentions project list query. Triggers include: list projects, project list, query projects, enumerate projects, show projects, project inventory, 查询项目, 项目列表, 查看项目, 列出项目, 获取项目列表, 华为云项目, 查询华为云项目列表.
What it does
Lists Huawei Cloud IAM (Identity and Access Management) projects — enumerates all projects under the authenticated account with project ID, name, domain ID, parent ID, enabled status and description, using the KooCLI `hcloud IAM KeystoneListProjects` command (primary) or the huaweicloudsdkiam Python SDK (fallback). Provides read-only project inventory for account management, resource discovery, permission review and multi-region operations planning. Use this skill whenever the user mentions project list query. Triggers include: list projects, project list, query projects, enumerate projects, show projects, project inventory, 查询项目, 项目列表, 查看项目, 列出项目, 获取项目列表, 华为云项目, 查询华为云项目列表.
The skill document
Huawei Cloud Project List Skill
Overview
This skill lists all Huawei Cloud IAM (Identity and Access Management) projects owned by the authenticated account. It is a read-only inventory skill: it never creates, modifies, deletes projects, or changes any IAM configuration.
Architecture:
Agent → hcloud CLI (KooCLI IAM, primary) → Huawei Cloud IAM API
↘ huaweicloudsdkiam Python SDK (fallback) ↗
Applicable Scenarios:
- Project inventory and resource discovery (locate project IDs for other services)
- Multi-region operations planning (each region has its own system project)
- Permission review (checking which projects exist under the account)
- Troubleshooting account-level IAM configuration
Prerequisites
- hcloud CLI (KooCLI) installed and authenticated — See
references/cli-installation-guide.md - IAM permissions —
iam:projects:listProjects— Seereferences/iam-policies.md - Python 3.6+ with
huaweicloudsdkiampackage (SDK fallback) —pip install huaweicloudsdkiam
Credentials. KooCLI reads credentials from
hcloud configure(AK/SK) or environment variables. The IAM API is global (no region endpoint), so the same account credentials used for other Huawei Cloud services work here. Never ask the user to paste AK/SK into the conversation.
Workflow
- Verify prerequisites —
hcloud version, then run the list command (below) - Run the query —
hcloud IAM KeystoneListProjects(CLI primary) with desired options - Handle results — Parse project IDs, names, domain IDs, parent IDs, enabled status, and descriptions; report the total project count
- Fallback — If the CLI is unavailable, use the Python SDK example below
Core Commands
List All Projects
hcloud IAM KeystoneListProjects --cli-region=cn-north-4
List Projects (JSON Output)
hcloud IAM KeystoneListProjects --cli-region=cn-north-4 --cli-output=json
Filter by Project Name
hcloud IAM KeystoneListProjects --cli-region=cn-north-4 --name=
Filter by Domain ID (Account ID)
hcloud IAM KeystoneListProjects --cli-region=cn-north-4 --domain_id=
Filter by Enabled Status
hcloud IAM KeystoneListProjects --cli-region=cn-north-4 --enabled=true
Filter by Parent Project ID
hcloud IAM KeystoneListProjects --cli-region=cn-north-4 --parent_id=
Pagination
hcloud IAM KeystoneListProjects --cli-region=cn-north-4 --page=1 --per_page=50
SDK Fallback Example
import os
from huaweicloudsdkcore.auth.credentials import GlobalCredentials
from huaweicloudsdkiam.v3 import IamClient
from huaweicloudsdkiam.v3.model import KeystoneListProjectsRequest
from huaweicloudsdkiam.v3.region.iam_region import IamRegion
# Project listing is a domain-level (global) operation, so use GlobalCredentials
# with the domain ID (account ID). Obtain the domain ID from the console or via
# `hcloud IAM KeystoneListAuthDomains`.
credentials = GlobalCredentials(
os.environ["HUAWEI_CLOUD_ACCESS_KEY"],
os.environ["HUAWEI_CLOUD_SECRET_KEY"],
).with_domain_id(os.environ["HUAWEI_CLOUD_DOMAIN_ID"])
client = IamClient.new_builder() \
.with_credentials(credentials) \
.with_region(IamRegion.value_of("cn-north-4")) \
.build()
response = client.keystone_list_projects(KeystoneListProjectsRequest())
projects = response.projects or []
for project in projects:
print(project.id, project.name, project.domain_id, project.parent_id, project.enabled, project.description)
print("Project number:", len(projects))
Parameter Confirmation
| Parameter | Required | Description | Example |
|---|---|---|---|
--cli-region | Yes | Huawei Cloud region for the CLI endpoint | cn-north-4 |
--name | No | Filter by project name | --name=cn-north-4 |
--domain_id | No | Filter by domain ID (account ID) | --domain_id=xxx |
--enabled | No | Filter by enabled status (true/false) | --enabled=true |
--parent_id | No | Filter by parent project ID (subprojects) | --parent_id=xxx |
--page / --per_page | No | Pagination (page ≥ 1, per_page 1–5000, used together) | --page=1 --per_page=50 |
--cli-output | No | Output format (json/table) | --cli-output=json |
Reference Documents
- CLI Installation Guide
- IAM Policies
- Verification Method
- Data Flow Diagram
- Acceptance Criteria
KooCLI Command Format Standard
The hcloud IAM module maps directly to the Huawei Cloud IAM API operations.
| Feature | Description | Example |
|---|---|---|
| Service name | IAM | hcloud IAM KeystoneListProjects |
| Operation name | IAM API operation name | KeystoneListProjects |
| Simple parameter | --key=value | hcloud IAM KeystoneListProjects --name=cn-north-4 |
| Output format | --cli-output=json/table | --cli-output=json |
| Credentials | KooCLI configured account (AK/SK or env vars) | hcloud configure |
Related skills
Query Huawei Cloud IAM resources (users, groups, policies, agencies, AK/SK, MFA, security settings) read-only via local Python SDK.
Read-only query of Huawei Cloud ECS, BMS, IMS, and AS resources via local Python scripts.
Provides guidance for Huawei Cloud KooCLI command-line tool operations. Covers KooCLI installation, IAM authentication configuration, access credential confi...
Queries Huawei Cloud monitoring and enterprise project resources (CES/EPS). Covers alarm rules, alarm histories, alarm templates, dashboards, notification ma...
Read-only queries against Huawei Cloud resources for inventory, verification, and parameter discovery.