summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/models/rgw-user-s3-key.ts
blob: bcb9531065fb774f4478d7a41be576cf689dd067 (plain)
1
2
3
4
5
6
export class RgwUserS3Key {
  user: string;
  generate_key?: boolean;
  access_key: string;
  secret_key: string;
}