Help Center/ KooPhone/ API Reference/ Permissions and Supported Actions/ Actions Supported by Identity Policy-based Authorization
Updated on 2025-11-24 GMT+08:00

Actions Supported by Identity Policy-based Authorization

IAM provides system-defined identity policies to define typical cloud service permissions. You can also create custom identity policies using the actions supported by cloud services for more refined access control.

In addition to IAM, the Organizations service also provides Service Control Policies (SCPs) to set access control policies.

SCPs do not actually grant any permissions to an entity. They only set the permissions boundary for the entity. When SCPs are attached to an organizational unit (OU) or a member account, the SCPs do not directly grant permissions to that OU or member account. Instead, the SCPs only determine what permissions are available for that member account or those member accounts under that OU. The granted permissions can be applied only if they are allowed by the SCPs.

To learn more about how IAM is different from Organizations for access control, see How IAM Is Different from Organizations for Access Control?.

This section describes the elements used by IAM custom identity policies and Organizations SCPs. The elements include actions, resources, and conditions.

Actions

Actions are specific operations that are allowed or denied in an identity policy.

  • The Access Level column describes how the action is classified (List, Read, or Write). This classification helps you understand the level of access that an action grants when you use it in an identity policy.
  • The Resource Type column indicates whether the action supports resource-level permissions.
    • You can use a wildcard (*) to indicate all resource types. If this column is empty (-), the action does not support resource-level permissions and you must specify all resources ("*") in your identity policy statements.
    • If this column includes a resource type, you must specify the URN in the Resource element of your identity policy statements.
    • Required resources are marked with asterisks (*) in the table. If you specify a resource in a statement using this action, then it must be of this type.

    For details about the resource types defined by koophone, see Resources.

  • The Condition Key column contains keys that you can specify in the Condition element of an identity policy statement.
    • If the Resource Type column has values for an action, the condition key takes effect only for the listed resource types.
    • If the Resource Type column is empty (-) for an action, the condition key takes effect for all resources that action supports.
    • If the Condition Key column is empty (-) for an action, the action does not support any condition keys.

    For details about the condition keys defined by koophone, see Conditions.

  • The Alias column lists the policy actions that are configured in identity policies. With these actions, you can use APIs for policy-based authorization. For details, see Policies and Identity Policies.

The following table lists the actions that you can define in identity policy statements for koophone.

Table 1 Actions supported by koophone

Action

Description

Access Level

Resource Type (*: required)

Condition Key

Alias

koophone:cloudphoneResource:syncInvokeInstance

Grants permission to execute synchronous ADB commands on cloud phone instances.

Write

koophone:cloudphoneResource *

-

-

koophone:cloudphoneResource:asyncInvokeInstance

Grants permission to execute asynchronous ADB commands on cloud phone instances.

Write

koophone:cloudphoneResource *

-

-

koophone:cloudphoneResource:queryExecuteJob

Grants permission to query the execution status of tasks associated with cloud phone instances.

Read

koophone:cloudphoneResource *

-

-

koophone:cloudphoneResource:setVideo

Grants permission to configure streaming video parameters for cloud phone instances.

Write

koophone:cloudphoneResource *

-

-

koophone:cloudphoneResource:queryBatchShowInstance

Grants permission to retrieve a batch list showing the status of cloud phone instances.

Write

koophone:cloudphoneResource *

-

-

koophone:cloudphoneResource:batchResetInstance

Grants permission to perform a batch reset operation on cloud phone instances.

Write

koophone:cloudphoneResource *

-

-

koophone:cloudphoneResource:executeInstanceAuthToken

Grants permission to obtain an authentication token for cloud phone instances to stream content via CloudOS.

Write

koophone:cloudphoneResource *

-

-

koophone:cloudphoneResource:instanceAssign

Grants permission to assign an already ordered cloud phone instance to a user.

Write

koophone:cloudphoneResource *

-

-

koophone:cloudphoneResource:instanceUnassign

Grants permission to remove an already ordered cloud phone instance from a user assignment.

Write

koophone:cloudphoneResource *

-

-

koophone:cloudphoneResource:queryInstanceBatch

Grants permission to retrieve a batch list showing the status of cloud phone instances.

Read

koophone:cloudphoneResource *

-

-

koophone:cloudphoneResource:instanceReboot

Grants permission to reboot a cloud phone instance.

Write

koophone:cloudphoneResource *

-

-

koophone:cloudphoneResource:queryInstanceSku

Grants permission to retrieve the list of available SKU (Stock Keeping Unit) for cloud phone instances.

Read

koophone:cloudphoneResource *

-

-

koophone:cloudphoneResource:instanceCreate

Grants permission to create and order a cloud phone instance using a subscription or package pricing model.

Write

koophone:cloudphoneResource *

-

-

koophone:cloudphoneResource:instanceDelete

Grants permission to cancel the subscription or delete a cloud phone instance.

Write

koophone:cloudphoneResource *

-

-

koophone:cloudphoneResource:instancePrepare

Grants permission to initiate the batch preparation process for cloud phone instances.

Write

koophone:cloudphoneResource *

-

-

koophone:cloudphoneResource:getInstancePrepareProgress

Grants permission to check the progress status of the batch preparation operation for cloud phone instances.

Read

koophone:cloudphoneResource *

-

-

koophone:cloudphoneResource:instanceBackup

Grants permission to perform backup operations on cloud phone instances.

Write

koophone:cloudphoneResource *

-

-

koophone:cloudphoneResource:stopInstancesStreaming

Grants permission to stop the streaming session for cloud phone instance.

Write

koophone:cloudphoneResource *

-

-

koophone:cloudphoneResource:releaseInstancesSession

Grants permission to release the session associated with cloud phone instance.

Write

koophone:cloudphoneResource *

-

-

koophone:cloudphoneResource:instanceAppInstall

Grants permission to install applications on cloud phone instances.

Write

koophone:cloudphoneResource *

-

-

Each API of koophone usually supports one or more actions. Table 2 lists the supported actions and dependencies.

Table 2 Actions and dependencies supported by koophone APIs

API

Action

Dependencies

POST /instances/async-command

koophone:cloudphoneResource:asyncInvokeInstance

-

GET /instances/tasks/{task_id}

koophone:cloudphoneResource:queryExecuteJob

-

PUT /instances/video-setting

koophone:cloudphoneResource:setVideo

-

POST /instances/batch-query-status

koophone:cloudphoneResource:queryBatchShowInstance

-

POST /instances/batch-reset

koophone:cloudphoneResource:batchResetInstance

-

POST /instances/{instance_id}/auth

koophone:cloudphoneResource:executeInstanceAuthToken

-

POST /instances/assign

koophone:cloudphoneResource:instanceAssign

-

POST /instances/unassign

koophone:cloudphoneResource:instanceUnassign

-

GET /instances/batch-query

koophone:cloudphoneResource:queryInstanceBatch

-

POST /instances/reboot

koophone:cloudphoneResource:instanceReboot

-

GET /instances/sku

koophone:cloudphoneResource:queryInstanceSku

-

POST /instances/create

koophone:cloudphoneResource:instanceCreate

-

POST /instances/delete

koophone:cloudphoneResource:instanceDelete

-

POST /instances/prepare

koophone:cloudphoneResource:instancePrepare

-

POST /instances/prepare-progress

koophone:cloudphoneResource:getInstancePrepareProgress

-

POST /instances/backup

koophone:cloudphoneResource:instanceBackup

-

POST /instances/streaming/stop

koophone:cloudphoneResource:stopInstancesStreaming

-

POST /instances/session/release

koophone:cloudphoneResource:releaseInstancesSession

-

POST /instances/app/install

koophone:cloudphoneResource:instanceAppInstall

-

POST /instances/sync-command

koophone:cloudphoneResource:syncInvokeInstance

-

Resources

A resource type indicates the resources that an identity policy applies to. If you specify a resource type for any action in Table 3, the resource URN must be specified in the identity policy statements using that action, and the identity policy applies only to resources of this type. If no resource type is specified, the Resource element is marked with an asterisk (*) and the identity policy applies to all resources. You can also set condition keys in an identity policy to define resource types.

The following table lists the resource types that you can define in identity policy statements for koophone.

Table 3 Resource types supported by koophone

Resource Type

URN

koophone:cloudphoneResource

koophone:*:*:cloudphoneResource:*

Conditions

koophone does not support service-specific condition keys in identity policies.It can only use global condition keys applicable to all services. For details, see Global Condition Keys.