PagedSubNameInfoList Class

A paged list of Service Fabric names. The list is paged when all of the results cannot fit in a single message. The next set of results can be obtained by executing the same query with the continuation token provided in this list.

Inheritance
PagedSubNameInfoList

Constructor

PagedSubNameInfoList(*, continuation_token: Optional[str] = None, is_consistent: Optional[bool] = None, sub_names=None, **kwargs)

Parameters

continuation_token
str
Required

The continuation token parameter is used to obtain next set of results. The continuation token is included in the response of the API when the results from the system do not fit in a single response. When this value is passed to the next API call, the API returns next set of results. If there are no further results, then the continuation token is not included in the response.

is_consistent
bool
Required

Indicates whether any name under the given name has been modified during the enumeration. If there was a modification, this property value is false.

sub_names
list[str]
Required

List of the child names.