-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathHuggingFace.IOrgsClient.GetOrganizationsByNameBillingUsageByInferenceSession.g.cs
More file actions
48 lines (47 loc) · 2.6 KB
/
Copy pathHuggingFace.IOrgsClient.GetOrganizationsByNameBillingUsageByInferenceSession.g.cs
File metadata and controls
48 lines (47 loc) · 2.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#nullable enable
namespace HuggingFace
{
public partial interface IOrgsClient
{
/// <summary>
/// Get session inference usage<br/>
/// Get org inference-provider usage broken down per session id, as a time-series of monthly periods.
/// </summary>
/// <param name="name"></param>
/// <param name="startDate">
/// Default Value: 2026-07-01T00:00:00.000Z
/// </param>
/// <param name="endDate">
/// Default Value: 2026-07-03T22:56:23.092Z
/// </param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::HuggingFace.ApiException"></exception>
global::System.Threading.Tasks.Task<global::HuggingFace.GetOrganizationsBillingUsageByInferenceSessionResponse> GetOrganizationsByNameBillingUsageByInferenceSessionAsync(
string name,
global::System.DateTime? startDate = default,
global::System.DateTime? endDate = default,
global::HuggingFace.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
/// <summary>
/// Get session inference usage<br/>
/// Get org inference-provider usage broken down per session id, as a time-series of monthly periods.
/// </summary>
/// <param name="name"></param>
/// <param name="startDate">
/// Default Value: 2026-07-01T00:00:00.000Z
/// </param>
/// <param name="endDate">
/// Default Value: 2026-07-03T22:56:23.092Z
/// </param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::HuggingFace.ApiException"></exception>
global::System.Threading.Tasks.Task<global::HuggingFace.AutoSDKHttpResponse<global::HuggingFace.GetOrganizationsBillingUsageByInferenceSessionResponse>> GetOrganizationsByNameBillingUsageByInferenceSessionAsResponseAsync(
string name,
global::System.DateTime? startDate = default,
global::System.DateTime? endDate = default,
global::HuggingFace.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
}