1 <tabset *ngIf="selection.hasSingleSelection">
2 <tab i18n-heading heading="Details">
4 <table class="table table-striped table-bordered">
8 class="bold col-sm-1">Name</td>
9 <td class="col-sm-3">{{ bucket.bid }}</td>
13 class="bold col-sm-1">ID</td>
14 <td>{{ bucket.id }}</td>
18 class="bold col-sm-1">Owner</td>
19 <td>{{ bucket.owner }}</td>
23 class="bold col-sm-1">Index type</td>
24 <td>{{ bucket.index_type }}</td>
28 class="bold col-sm-1">Placement rule</td>
29 <td>{{ bucket.placement_rule }}</td>
33 class="bold col-sm-1">Marker</td>
34 <td>{{ bucket.marker }}</td>
38 class="bold col-sm-1">Maximum marker</td>
39 <td>{{ bucket.max_marker }}</td>
43 class="bold col-sm-1">Version</td>
44 <td>{{ bucket.ver }}</td>
48 class="bold col-sm-1">Master version</td>
49 <td>{{ bucket.master_ver }}</td>
53 class="bold col-sm-1">Modification time</td>
54 <td>{{ bucket.mtime }}</td>
58 class="bold col-sm-1">Zonegroup</td>
59 <td>{{ bucket.zonegroup }}</td>
65 <div *ngIf="bucket.bucket_quota">
66 <legend i18n>Bucket quota</legend>
67 <table class="table table-striped table-bordered">
71 class="bold col-sm-1">Enabled</td>
72 <td class="col-sm-3">{{ bucket.bucket_quota.enabled ? "Yes" : "No" }}</td>
76 class="bold col-sm-1">Maximum size</td>
77 <td *ngIf="bucket.bucket_quota.max_size <= -1"
79 class="col-sm-3">Unlimited</td>
80 <td *ngIf="bucket.bucket_quota.max_size > -1"
82 {{ bucket.bucket_quota.max_size | dimless }}
87 class="bold col-sm-1">Maximum objects</td>
88 <td *ngIf="bucket.bucket_quota.max_objects <= -1"
90 class="col-sm-3">Unlimited</td>
91 <td *ngIf="bucket.bucket_quota.max_objects > -1"
93 {{ bucket.bucket_quota.max_objects }}