(self, infra: Infra, project: str, commit: bool = True)
| 565 | return [ProjectMetadata.from_proto(pm) for pm in response.project_metadata] |
| 566 | |
| 567 | def update_infra(self, infra: Infra, project: str, commit: bool = True): |
| 568 | request = RegistryServer_pb2.UpdateInfraRequest( |
| 569 | infra=infra.to_proto(), project=project, commit=commit |
| 570 | ) |
| 571 | self.stub.UpdateInfra(request) |
| 572 | |
| 573 | def get_infra(self, project: str, allow_cache: bool = False) -> Infra: |
| 574 | request = RegistryServer_pb2.GetInfraRequest( |
nothing calls this directly
no test coverage detected