1 <ng-container *ngIf="selection">
2 <table class="table table-striped table-bordered">
6 class="bold w-25">Versioning</td>
7 <td class="w-75">{{ selection.versioning }}</td>
11 class="bold">Encryption</td>
12 <td>{{ selection.encryption }}</td>
16 class="bold">MFA Delete</td>
17 <td>{{ selection.mfa_delete }}</td>
21 class="bold">Index type</td>
22 <td>{{ selection.index_type }}</td>
26 class="bold">Placement rule</td>
27 <td>{{ selection.placement_rule }}</td>
31 class="bold">Last modification time</td>
32 <td>{{ selection.mtime | cdDate }}</td>
39 <legend i18n>Bucket quota</legend>
40 <table class="table table-striped table-bordered">
44 class="bold w-25">Enabled</td>
45 <td class="w-75">{{ selection.bucket_quota.enabled | booleanText }}</td>
47 <ng-container *ngIf="selection.bucket_quota.enabled">
50 class="bold">Maximum size</td>
51 <td *ngIf="selection.bucket_quota.max_size <= -1"
53 <td *ngIf="selection.bucket_quota.max_size > -1">
54 {{ selection.bucket_quota.max_size | dimless }}
59 class="bold">Maximum objects</td>
60 <td *ngIf="selection.bucket_quota.max_objects <= -1"
62 <td *ngIf="selection.bucket_quota.max_objects > -1">
63 {{ selection.bucket_quota.max_objects }}
72 <legend i18n>Locking</legend>
73 <table class="table table-striped table-bordered">
77 class="bold w-25">Enabled</td>
78 <td class="w-75">{{ selection.lock_enabled | booleanText }}</td>
80 <ng-container *ngIf="selection.lock_enabled">
83 class="bold">Mode</td>
84 <td>{{ selection.lock_mode }}</td>
88 class="bold">Days</td>
89 <td>{{ selection.lock_retention_period_days }}</td>