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">Encryption</td>
67 <td>{{ selection.encryption }}</td>
71 class="bold">MFA Delete</td>
72 <td>{{ selection.mfa_delete }}</td>
78 <div *ngIf="selection.bucket_quota">
79 <legend i18n>Bucket quota</legend>
80 <table class="table table-striped table-bordered">
84 class="bold w-25">Enabled</td>
85 <td class="w-75">{{ selection.bucket_quota.enabled | booleanText }}</td>
89 class="bold">Maximum size</td>
90 <td *ngIf="selection.bucket_quota.max_size <= -1"
92 <td *ngIf="selection.bucket_quota.max_size > -1">
93 {{ selection.bucket_quota.max_size | dimless }}
98 class="bold">Maximum objects</td>
99 <td *ngIf="selection.bucket_quota.max_objects <= -1"
101 <td *ngIf="selection.bucket_quota.max_objects > -1">
102 {{ selection.bucket_quota.max_objects }}
110 <legend i18n>Locking</legend>
111 <table class="table table-striped table-bordered">
115 class="bold w-25">Enabled</td>
116 <td class="w-75">{{ selection.lock_enabled | booleanText }}</td>
118 <ng-container *ngIf="selection.lock_enabled">
121 class="bold">Mode</td>
122 <td>{{ selection.lock_mode }}</td>
126 class="bold">Days</td>
127 <td>{{ selection.lock_retention_period_days }}</td>