Click or drag to resize
ICoreApiListExistingServices Method
Lists existing child services for given parent service, paginated.

Namespace: Atomia.Provisioning.Service
Assembly: Atomia.Provisioning.Service (in Atomia.Provisioning.Service.dll) Version: 17.3.6337.16014
Syntax
ProvisioningService[] ListExistingServices(
	ProvisioningService parentService,
	bool getLogicalChildren,
	string accountId,
	bool sortAsc,
	int pageNumber,
	int pageSize,
	out int totalItems
)

Parameters

parentService
Type: Atomia.Provisioning.BaseProvisioningService
Parent service. If this parameter is null, root services will be returned.
getLogicalChildren
Type: SystemBoolean
Determinate whether logical or physical children service representation should be returned.
accountId
Type: SystemString
Account name for whom to search for.
sortAsc
Type: SystemBoolean
If set to true services will be return ordered ascending by name. If not, order will be descending
pageNumber
Type: SystemInt32
The page number.
pageSize
Type: SystemInt32
Number of returned services by page.
totalItems
Type: SystemInt32
Total number of existing child services.

Return Value

Type: ProvisioningService
List of child services or null if no child services.
See Also