(self, infra: Infra, project: str, commit: bool = True)
| 1093 | ) |
| 1094 | |
| 1095 | def update_infra(self, infra: Infra, project: str, commit: bool = True): |
| 1096 | self._apply_object( |
| 1097 | table=managed_infra, |
| 1098 | project=project, |
| 1099 | id_field_name="infra_name", |
| 1100 | obj=infra, |
| 1101 | proto_field_name="infra_proto", |
| 1102 | name="infra_obj", |
| 1103 | ) |
| 1104 | |
| 1105 | def _get_infra(self, project: str) -> Infra: |
| 1106 | infra_object = self._get_object( |
nothing calls this directly
no test coverage detected