Returns the Infra required to support the desired registry. Args: config: The RepoConfig for the current FeatureStore. desired_registry_proto: The desired registry, in proto form.
(
self, config: RepoConfig, desired_registry_proto: RegistryProto
)
| 92 | pass |
| 93 | |
| 94 | def plan_infra( |
| 95 | self, config: RepoConfig, desired_registry_proto: RegistryProto |
| 96 | ) -> Infra: |
| 97 | """ |
| 98 | Returns the Infra required to support the desired registry. |
| 99 | |
| 100 | Args: |
| 101 | config: The RepoConfig for the current FeatureStore. |
| 102 | desired_registry_proto: The desired registry, in proto form. |
| 103 | """ |
| 104 | return Infra() |
| 105 | |
| 106 | @abstractmethod |
| 107 | def teardown_infra( |