1 <ng-container *ngIf="selection">
2 <table class="table table-striped table-bordered">
6 class="bold w-25">Name</td>
7 <td class="w-75">{{ selection.bid }}</td>
12 <td>{{ selection.id }}</td>
16 class="bold">Owner</td>
17 <td>{{ selection.owner }}</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">Marker</td>
32 <td>{{ selection.marker }}</td>
36 class="bold">Maximum marker</td>
37 <td>{{ selection.max_marker }}</td>
41 class="bold">Version</td>
42 <td>{{ selection.ver }}</td>
46 class="bold">Master version</td>
47 <td>{{ selection.master_ver }}</td>
51 class="bold">Modification time</td>
52 <td>{{ selection.mtime | cdDate }}</td>
56 class="bold">Zonegroup</td>
57 <td>{{ selection.zonegroup }}</td>
61 class="bold">Versioning</td>
62 <td>{{ selection.versioning }}</td>
66 class="bold">MFA Delete</td>
67 <td>{{ selection.mfa_delete }}</td>
73 <div *ngIf="selection.bucket_quota">
74 <legend i18n>Bucket quota</legend>
75 <table class="table table-striped table-bordered">
79 class="bold w-25">Enabled</td>
80 <td class="w-75">{{ selection.bucket_quota.enabled | booleanText }}</td>
84 class="bold">Maximum size</td>
85 <td *ngIf="selection.bucket_quota.max_size <= -1"
87 <td *ngIf="selection.bucket_quota.max_size > -1">
88 {{ selection.bucket_quota.max_size | dimless }}
93 class="bold">Maximum objects</td>
94 <td *ngIf="selection.bucket_quota.max_objects <= -1"
96 <td *ngIf="selection.bucket_quota.max_objects > -1">
97 {{ selection.bucket_quota.max_objects }}
105 <legend i18n>Locking</legend>
106 <table class="table table-striped table-bordered">
110 class="bold w-25">Enabled</td>
111 <td class="w-75">{{ selection.lock_enabled | booleanText }}</td>
113 <ng-container *ngIf="selection.lock_enabled">
116 class="bold">Mode</td>
117 <td>{{ selection.lock_mode }}</td>
121 class="bold">Days</td>
122 <td>{{ selection.lock_retention_period_days }}</td>
126 class="bold">Years</td>
127 <td>{{ selection.lock_retention_period_years }}</td>