This commit is contained in:
Tyler Fox 2018-09-20 10:33:53 -07:00
Родитель b5de2062a1
Коммит a0af16c537
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -343,7 +343,7 @@ client.scriptActions().delete("<Resource Group Name>", "<Cluster Name>", "<Scrip
### List Persisted Script Actions
> [!NOTE]
> Both `listByCluster()` returns a `PagedList<RuntimeScriptActionDetailInner>` object. Calling `currentPage().items()` returns a list of `RuntimeScriptActionDetailInner`, and `loadNextPage()` advances to the next page. This can be repeated until a `hasNextPage()` return `false`, indicating that there are no more pages.
> Both `listByCluster()` returns a `PagedList<RuntimeScriptActionDetailInner>` object. Calling `currentPage().items()` returns a list of `RuntimeScriptActionDetailInner`, and `loadNextPage()` advances to the next page. This can be repeated until `hasNextPage()` returns `false`, indicating that there are no more pages.
To list all persisted script actions for the specified cluster:
```java