(self)
| 3685 | return f'TunedProfile({self.profile_name})' |
| 3686 | |
| 3687 | def copy(self) -> 'TunedProfileSpec': |
| 3688 | # for making deep copies so you can edit the settings in one without affecting the other |
| 3689 | # mostly for testing purposes |
| 3690 | return TunedProfileSpec(self.profile_name, self.placement, self.settings.copy()) |
| 3691 | |
| 3692 | |
| 3693 | class CephExporterSpec(ServiceSpec): |
no test coverage detected