]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/blob
483ac1fcf67f340de4976105f4de4ba247969937
[ceph.git] /
1 import { Component, Input } from '@angular/core';
2 import { Icons } from '~/app/shared/enum/icons.enum';
3
4 @Component({
5   selector: 'cd-rgw-sync-primary-zone',
6   templateUrl: './rgw-sync-primary-zone.component.html',
7   styleUrls: ['./rgw-sync-primary-zone.component.scss']
8 })
9 export class RgwSyncPrimaryZoneComponent {
10   icons = Icons;
11
12   @Input()
13   realm: string;
14
15   @Input()
16   zonegroup: string;
17
18   @Input()
19   zone: string;
20
21   constructor() {}
22 }