Files
octokit.net/Octokit.Reactive/Clients/ObservableActionsSelfHostedRunnerGroupsClient.cs
Matisse Hack 160a72381e Fix runner group access return type (#2965)
* Fix runner group access return type

* Fix tests

* Fix observables
2024-08-30 16:59:52 -07:00

232 lines
12 KiB
C#

using System;
using System.Reactive.Threading.Tasks;
using Octokit.Reactive.Internal;
namespace Octokit.Reactive
{
public class ObservableActionsSelfHostedRunnerGroupsClient : IObservableActionsSelfHostedRunnerGroupsClient
{
readonly IActionsSelfHostedRunnerGroupsClient _client;
readonly IConnection _connection;
/// <summary>
/// Instantiate a new GitHub Actions Self-hosted runner groups API client.
/// </summary>
/// <param name="client">A GitHub client.</param>
public ObservableActionsSelfHostedRunnerGroupsClient(IGitHubClient client)
{
Ensure.ArgumentNotNull(client, nameof(client));
_client = client.Actions.SelfHostedRunnerGroups;
_connection = client.Connection;
}
/// <summary>
/// Get a self-hosted runner group for an enterprise
/// </summary>
/// <remarks>
/// https://docs.github.com/en/enterprise-cloud@latest/rest/actions/self-hosted-runner-groups?apiVersion=2022-11-28#get-a-self-hosted-runner-group-for-an-enterprise
/// </remarks>
/// <param name="enterprise">The enterprise name.</param>
/// <param name="runnerGroupId">Unique identifier of the self-hosted runner group.</param>
public IObservable<RunnerGroup> GetRunnerGroupForEnterprise(string enterprise, long runnerGroupId)
{
Ensure.ArgumentNotNullOrEmptyString(enterprise, nameof(enterprise));
return _client.GetRunnerGroupForEnterprise(enterprise, runnerGroupId).ToObservable();
}
/// <summary>
/// Get a self-hosted runner group for an organization
/// </summary>
/// <remarks>
/// https://docs.github.com/en/enterprise-cloud@latest/rest/actions/self-hosted-runner-groups?apiVersion=2022-11-28#get-a-self-hosted-runner-group-for-an-organization
/// </remarks>
/// <param name="org">The organization name.</param>
/// <param name="runnerGroupId">Unique identifier of the self-hosted runner group.</param>
public IObservable<RunnerGroup> GetRunnerGroupForOrganization(string org, long runnerGroupId)
{
Ensure.ArgumentNotNullOrEmptyString(org, nameof(org));
return _client.GetRunnerGroupForOrganization(org, runnerGroupId).ToObservable();
}
/// <summary>
/// List self-hosted runner groups for an enterprise
/// </summary>
/// <remarks>
/// https://docs.github.com/en/enterprise-cloud@latest/rest/actions/self-hosted-runner-groups?apiVersion=2022-11-28#list-self-hosted-runner-groups-for-an-enterprise
/// </remarks>
/// <param name="enterprise">The enterprise name</param>
public IObservable<RunnerGroupResponse> ListAllRunnerGroupsForEnterprise(string enterprise)
{
return ListAllRunnerGroupsForEnterprise(enterprise, ApiOptions.None);
}
/// <summary>
/// List self-hosted runner groups for an enterprise
/// </summary>
/// <remarks>
/// https://docs.github.com/en/enterprise-cloud@latest/rest/actions/self-hosted-runner-groups?apiVersion=2022-11-28#list-self-hosted-runner-groups-for-an-enterprise
/// </remarks>
/// <param name="enterprise">The enterprise name</param>
/// <param name="options">Options for changing the API response</param>
public IObservable<RunnerGroupResponse> ListAllRunnerGroupsForEnterprise(string enterprise, ApiOptions options)
{
Ensure.ArgumentNotNullOrEmptyString(enterprise, nameof(enterprise));
Ensure.ArgumentNotNull(options, nameof(options));
return _client.ListAllRunnerGroupsForEnterprise(enterprise, options).ToObservable();
}
/// <summary>
/// List self-hosted runner groups for an organization
/// </summary>
/// <remarks>
/// https://docs.github.com/en/enterprise-cloud@latest/rest/actions/self-hosted-runner-groups?apiVersion=2022-11-28#list-self-hosted-runner-groups-for-an-organization
/// </remarks>
/// <param name="org">The organization name</param>
public IObservable<RunnerGroupResponse> ListAllRunnerGroupsForOrganization(string org)
{
return ListAllRunnerGroupsForOrganization(org, ApiOptions.None);
}
/// <summary>
/// List self-hosted runner groups for an organization
/// </summary>
/// <remarks>
/// https://docs.github.com/en/enterprise-cloud@latest/rest/actions/self-hosted-runner-groups?apiVersion=2022-11-28#list-self-hosted-runner-groups-for-an-organization
/// </remarks>
/// <param name="org">The organization name</param>
/// <param name="options">Options for changing the API response</param>
public IObservable<RunnerGroupResponse> ListAllRunnerGroupsForOrganization(string org, ApiOptions options)
{
Ensure.ArgumentNotNullOrEmptyString(org, nameof(org));
Ensure.ArgumentNotNull(options, nameof(options));
return _client.ListAllRunnerGroupsForOrganization(org, options).ToObservable();
}
/// <summary>
/// Lists all self-hosted runners in a self-hosted runner group configured in an enterprise
/// </summary>
/// <remarks>
/// https://docs.github.com/en/enterprise-cloud@latest/rest/actions/self-hosted-runner-groups?apiVersion=2022-11-28#list-self-hosted-runners-in-a-group-for-an-enterprise
/// </remarks>
/// <param name="enterprise">The enterprise name</param>
/// <param name="groupId">The runner group ID</param>
public IObservable<RunnerResponse> ListAllRunnersForEnterpriseRunnerGroup(string enterprise, long groupId)
{
return ListAllRunnersForEnterpriseRunnerGroup(enterprise, groupId, ApiOptions.None);
}
/// <summary>
/// Lists all self-hosted runners in a self-hosted runner group configured in an enterprise
/// </summary>
/// <remarks>
/// https://docs.github.com/en/enterprise-cloud@latest/rest/actions/self-hosted-runner-groups?apiVersion=2022-11-28#list-self-hosted-runners-in-a-group-for-an-enterprise
/// </remarks>
/// <param name="enterprise">The enterprise name</param>
/// <param name="groupId">The runner group ID</param>
/// <param name="options">Options for changing the API response</param>
public IObservable<RunnerResponse> ListAllRunnersForEnterpriseRunnerGroup(string enterprise, long groupId, ApiOptions options)
{
Ensure.ArgumentNotNull(options, nameof(options));
return _client.ListAllRunnersForEnterpriseRunnerGroup(enterprise, groupId, options).ToObservable();
}
/// <summary>
/// Lists all self-hosted runners in a self-hosted runner group configured in an organization
/// </summary>
/// <remarks>
/// https://docs.github.com/en/enterprise-cloud@latest/rest/actions/self-hosted-runner-groups?apiVersion=2022-11-28#list-self-hosted-runners-in-a-group-for-an-organization
/// </remarks>
/// <param name="organization">The organization name</param>
/// <param name="groupId">The runner group ID</param>
public IObservable<RunnerResponse> ListAllRunnersForOrganizationRunnerGroup(string organization, long groupId)
{
return ListAllRunnersForOrganizationRunnerGroup(organization, groupId, ApiOptions.None);
}
/// <summary>
/// Lists all self-hosted runners in a self-hosted runner group configured in an organization
/// </summary>
/// <remarks>
/// https://docs.github.com/en/enterprise-cloud@latest/rest/actions/self-hosted-runner-groups?apiVersion=2022-11-28#list-self-hosted-runners-in-a-group-for-an-organization
/// </remarks>
/// <param name="organization">The organization name</param>
/// <param name="groupId">The runner group ID</param>
/// <param name="options">Options for changing the API response</param>
public IObservable<RunnerResponse> ListAllRunnersForOrganizationRunnerGroup(string organization, long groupId, ApiOptions options)
{
Ensure.ArgumentNotNullOrEmptyString(organization, nameof(organization));
Ensure.ArgumentNotNull(options, nameof(options));
return _client.ListAllRunnersForOrganizationRunnerGroup(organization, groupId, options).ToObservable();
}
/// <summary>
/// List organization access to a self-hosted runner group in an enterprise
/// </summary>
/// <remarks>
/// https://docs.github.com/en/enterprise-cloud@latest/rest/actions/self-hosted-runner-groups?apiVersion=2022-11-28#list-organization-access-to-a-self-hosted-runner-group-in-an-enterprise
/// </remarks>
/// <param name="enterprise">The enterprise name</param>
/// <param name="runnerGroupId">The runner group ID</param>
public IObservable<OrganizationsResponse> ListAllRunnerGroupOrganizationsForEnterprise(string enterprise, long runnerGroupId)
{
return ListAllRunnerGroupOrganizationsForEnterprise(enterprise, runnerGroupId, ApiOptions.None);
}
/// <summary>
/// List organization access to a self-hosted runner group in an enterprise
/// </summary>
/// <remarks>
/// https://docs.github.com/en/enterprise-cloud@latest/rest/actions/self-hosted-runner-groups?apiVersion=2022-11-28#list-organization-access-to-a-self-hosted-runner-group-in-an-enterprise
/// </remarks>
/// <param name="enterprise">The enterprise name</param>
/// <param name="runnerGroupId">The runner group ID</param>
/// <param name="options">Options for changing the API response</param>
public IObservable<OrganizationsResponse> ListAllRunnerGroupOrganizationsForEnterprise(string enterprise, long runnerGroupId, ApiOptions options)
{
Ensure.ArgumentNotNullOrEmptyString(enterprise, nameof(enterprise));
Ensure.ArgumentNotNull(options, nameof(options));
return _client.ListAllRunnerGroupOrganizationsForEnterprise(enterprise, runnerGroupId, options).ToObservable();
}
/// <summary>
/// List repository access to a self-hosted runner group in an organization
/// </summary>
/// <remarks>
/// https://docs.github.com/en/enterprise-cloud@latest/rest/actions/self-hosted-runner-groups?apiVersion=2022-11-28#list-repository-access-to-a-self-hosted-runner-group-in-an-organization
/// </remarks>
/// <param name="org">The organization name</param>
/// <param name="runnerGroupId">The runner group ID</param>
public IObservable<RepositoriesResponse> ListAllRunnerGroupRepositoriesForOrganization(string org, long runnerGroupId)
{
return ListAllRunnerGroupRepositoriesForOrganization(org, runnerGroupId, ApiOptions.None);
}
/// <summary>
/// List repository access to a self-hosted runner group in an organization
/// </summary>
/// <remarks>
/// https://docs.github.com/en/enterprise-cloud@latest/rest/actions/self-hosted-runner-groups?apiVersion=2022-11-28#list-repository-access-to-a-self-hosted-runner-group-in-an-organization
/// </remarks>
/// <param name="org">The organization name</param>
/// <param name="runnerGroupId">The runner group ID</param>
/// <param name="options">Options for changing the API response</param>
public IObservable<RepositoriesResponse> ListAllRunnerGroupRepositoriesForOrganization(string org, long runnerGroupId, ApiOptions options)
{
Ensure.ArgumentNotNullOrEmptyString(org, nameof(org));
Ensure.ArgumentNotNull(options, nameof(options));
return _client.ListAllRunnerGroupRepositoriesForOrganization(org, runnerGroupId, options).ToObservable();
}
}
}