ClientMirrorBackfillResponseDto
Namespace: Meshmakers.Octo.Communication.Contracts.DataTransferObjects
Result body for the backfill operation
(POST .../{clientId}/mirrors/provisionInExistingTenants).
public record ClientMirrorBackfillResponseDto : IEquatable<ClientMirrorBackfillResponseDto>
Inheritance Object → ClientMirrorBackfillResponseDto
Implements IEquatable<ClientMirrorBackfillResponseDto>
Properties
ChildTenantsConsidered
public int ChildTenantsConsidered { get; set; }
Property Value
NewlyProvisioned
public int NewlyProvisioned { get; set; }
Property Value
AlreadyPresent
public int AlreadyPresent { get; set; }
Property Value
Constructors
ClientMirrorBackfillResponseDto(Int32, Int32, Int32)
Result body for the backfill operation
(POST .../{clientId}/mirrors/provisionInExistingTenants).
public ClientMirrorBackfillResponseDto(int ChildTenantsConsidered, int NewlyProvisioned, int AlreadyPresent)
Parameters
ChildTenantsConsidered Int32
NewlyProvisioned Int32
AlreadyPresent Int32