Package version:

Details of a REST API operation, returned from the Resource Provider Operations API

interface Operation {
    actionType?: string;
    display?: OperationDisplay;
    isDataAction?: boolean;
    name?: string;
    origin?: string;
}

Properties

actionType?: string

Extensible enum. Indicates the action type. "Internal" refers to actions that are for internal only APIs.

Localized display information for this particular operation.

isDataAction?: boolean

Whether the operation applies to data-plane. This is "true" for data-plane operations and "false" for Azure Resource Manager/control-plane operations.

name?: string

The name of the operation, as per Resource-Based Access Control (RBAC). Examples: "Microsoft.Compute/virtualMachines/write", "Microsoft.Compute/virtualMachines/capture/action"

origin?: string

The intended executor of the operation; as in Resource Based Access Control (RBAC) and audit logs UX. Default value is "user,system"