Adding support for creating Codespaces and getting available machine types (#2929)

Adding support for creating Codespaces
This commit is contained in:
Aaron Junker-Wildi
2024-07-29 22:43:50 +02:00
committed by GitHub
parent 148162a34b
commit 35f1784781
11 changed files with 181 additions and 3 deletions

View File

@@ -16,5 +16,7 @@ namespace Octokit.Reactive
IObservable<Codespace> Get(string codespaceName);
IObservable<Codespace> Start(string codespaceName);
IObservable<Codespace> Stop(string codespaceName);
IObservable<MachinesCollection> GetAvailableMachinesForRepo(string repoOwner, string repoName, string reference = null);
IObservable<Codespace> Create(string owner, string repo, NewCodespace newCodespace);
}
}