You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All calls must be authenticated with a valid Microsoft Entra ID (OAuth 2) token in the Authorization header and must meet the following requirements:
58
58
59
59
- The token must be either a user token or an application service principal.
60
-
- The token must have the audience set to exactly `https://*.asazure.windows.net`. Note that `*`is not a placeholder or a wildcard, and the audience must have the `*` character as the subdomain. Specifying an invalid audience results in authentication failure.
60
+
- The token must have the audience set to exactly `https://*.asazure.windows.net`. Note that `*`isn't a placeholder or a wildcard, and the audience must have the `*` character as the subdomain. Specifying an invalid audience results in authentication failure.
61
61
- The user or application must have sufficient permissions on the server or model to make the requested call. The permission level is determined by roles within the model or the admin group on the server.
62
62
63
63
> [!IMPORTANT]
@@ -91,12 +91,12 @@ The body may resemble the following:
91
91
92
92
### Parameters
93
93
94
-
Specifying parameters is not required. The default is applied.
94
+
The default value is applied if the parameter isn't specified.
|`Type`| Enum | The type of processing to perform. The types are aligned with the TMSL [refresh command](/analysis-services/tmsl/refresh-command-tmsl) types: full, clearValues, calculate, dataOnly, automatic, and defragment. Add type is not supported. | automatic |
99
-
|`CommitMode`| Enum | Determines if objects will be committed in batches or only when complete. Modes include: default, transactional, partialBatch. | transactional |
98
+
|`Type`| Enum | The type of processing to perform. The types are aligned with the TMSL [refresh command](/analysis-services/tmsl/refresh-command-tmsl) types: `full`, `clearValues`, `calculate`, `dataOnly`, `automatic`, and `defragment`. `add` type isn't supported. |`automatic`|
99
+
|`CommitMode`| Enum | Determines if objects will be committed in batches or only when complete. Modes include: `default`, `transactional`, `partialBatch`. |`transactional`|
100
100
|`MaxParallelism`| Int | This value determines the maximum number of threads on which to run processing commands in parallel. This value aligned with the MaxParallelism property that can be set in the TMSL [Sequence command](/analysis-services/tmsl/sequence-command-tmsl) or using other methods. | 10 |
101
101
|`RetryCount`| Int | Indicates the number of times the operation retries before failing. | 0 |
102
102
|`Objects`| Array | An array of objects to be processed. Each object includes: "table" when processing the entire table or "table" and "partition" when processing a partition. If no objects are specified, the whole model is refreshed. | Process the entire model |
0 commit comments