Interface ILegacyAuthorizationsService
Represents a collection of functions to interact with the API endpoints
Namespace: InfluxDB.Client.Api.Service
Assembly: InfluxDB.Client.dll
Syntax
public interface ILegacyAuthorizationsService : IApiAccessor
Methods
DeleteLegacyAuthorizationsID(String, String)
Delete a legacy authorization
Declaration
void DeleteLegacyAuthorizationsID(string authID, string zapTraceSpan = null)
Parameters
Type | Name | Description |
---|---|---|
System. |
authID | The ID of the legacy authorization to delete. |
System. |
zapTraceSpan | OpenTracing span context (optional) |
Exceptions
Type | Condition |
---|---|
Influx |
Thrown when fails to make API call |
DeleteLegacyAuthorizationsIDAsync(String, String, CancellationToken)
Delete a legacy authorization
Declaration
System.Threading.Tasks.Task DeleteLegacyAuthorizationsIDAsync(string authID, string zapTraceSpan = null, CancellationToken cancellationToken = null)
Parameters
Type | Name | Description |
---|---|---|
System. |
authID | The ID of the legacy authorization to delete. |
System. |
zapTraceSpan | OpenTracing span context (optional) |
Cancellation |
cancellationToken | Cancellation token |
Returns
Type | Description |
---|---|
System. |
Task of void |
Exceptions
Type | Condition |
---|---|
Influx |
Thrown when fails to make API call |
DeleteLegacyAuthorizationsIDAsyncWithHttpInfo(String, String, CancellationToken)
Delete a legacy authorization
Declaration
System.Threading.Tasks.Task<ApiResponse<object>> DeleteLegacyAuthorizationsIDAsyncWithHttpInfo(string authID, string zapTraceSpan = null, CancellationToken cancellationToken = null)
Parameters
Type | Name | Description |
---|---|---|
System. |
authID | The ID of the legacy authorization to delete. |
System. |
zapTraceSpan | OpenTracing span context (optional) |
Cancellation |
cancellationToken | Cancellation token |
Returns
Type | Description |
---|---|
System. |
Task of ApiResponse |
Exceptions
Type | Condition |
---|---|
Influx |
Thrown when fails to make API call |
DeleteLegacyAuthorizationsIDWithHttpInfo(String, String)
Delete a legacy authorization
Declaration
ApiResponse<object> DeleteLegacyAuthorizationsIDWithHttpInfo(string authID, string zapTraceSpan = null)
Parameters
Type | Name | Description |
---|---|---|
System. |
authID | The ID of the legacy authorization to delete. |
System. |
zapTraceSpan | OpenTracing span context (optional) |
Returns
Type | Description |
---|---|
Influx |
ApiResponse of Object(void) |
Exceptions
Type | Condition |
---|---|
Influx |
Thrown when fails to make API call |
GetLegacyAuthorizations(String, String, String, String, String, String, String)
List all legacy authorizations
Declaration
Authorizations GetLegacyAuthorizations(string zapTraceSpan = null, string userID = null, string user = null, string orgID = null, string org = null, string token = null, string authID = null)
Parameters
Type | Name | Description |
---|---|---|
System. |
zapTraceSpan | OpenTracing span context (optional) |
System. |
userID | Only show legacy authorizations that belong to a user ID. (optional) |
System. |
user | Only show legacy authorizations that belong to a user name. (optional) |
System. |
orgID | Only show legacy authorizations that belong to an organization ID. (optional) |
System. |
org | Only show legacy authorizations that belong to a organization name. (optional) |
System. |
token | Only show legacy authorizations with a specified token (auth name). (optional) |
System. |
authID | Only show legacy authorizations with a specified auth ID. (optional) |
Returns
Type | Description |
---|---|
Authorizations | Authorizations |
Exceptions
Type | Condition |
---|---|
Influx |
Thrown when fails to make API call |
GetLegacyAuthorizationsAsync(String, String, String, String, String, String, String, CancellationToken)
List all legacy authorizations
Declaration
System.Threading.Tasks.Task<Authorizations> GetLegacyAuthorizationsAsync(string zapTraceSpan = null, string userID = null, string user = null, string orgID = null, string org = null, string token = null, string authID = null, CancellationToken cancellationToken = null)
Parameters
Type | Name | Description |
---|---|---|
System. |
zapTraceSpan | OpenTracing span context (optional) |
System. |
userID | Only show legacy authorizations that belong to a user ID. (optional) |
System. |
user | Only show legacy authorizations that belong to a user name. (optional) |
System. |
orgID | Only show legacy authorizations that belong to an organization ID. (optional) |
System. |
org | Only show legacy authorizations that belong to a organization name. (optional) |
System. |
token | Only show legacy authorizations with a specified token (auth name). (optional) |
System. |
authID | Only show legacy authorizations with a specified auth ID. (optional) |
Cancellation |
cancellationToken | Cancellation token |
Returns
Type | Description |
---|---|
System. |
Task of Authorizations |
Exceptions
Type | Condition |
---|---|
Influx |
Thrown when fails to make API call |
GetLegacyAuthorizationsAsyncWithHttpInfo(String, String, String, String, String, String, String, CancellationToken)
List all legacy authorizations
Declaration
System.Threading.Tasks.Task<ApiResponse<Authorizations>> GetLegacyAuthorizationsAsyncWithHttpInfo(string zapTraceSpan = null, string userID = null, string user = null, string orgID = null, string org = null, string token = null, string authID = null, CancellationToken cancellationToken = null)
Parameters
Type | Name | Description |
---|---|---|
System. |
zapTraceSpan | OpenTracing span context (optional) |
System. |
userID | Only show legacy authorizations that belong to a user ID. (optional) |
System. |
user | Only show legacy authorizations that belong to a user name. (optional) |
System. |
orgID | Only show legacy authorizations that belong to an organization ID. (optional) |
System. |
org | Only show legacy authorizations that belong to a organization name. (optional) |
System. |
token | Only show legacy authorizations with a specified token (auth name). (optional) |
System. |
authID | Only show legacy authorizations with a specified auth ID. (optional) |
Cancellation |
cancellationToken | Cancellation token |
Returns
Type | Description |
---|---|
System. |
Task of ApiResponse (Authorizations) |
Exceptions
Type | Condition |
---|---|
Influx |
Thrown when fails to make API call |
GetLegacyAuthorizationsID(String, String)
Retrieve a legacy authorization
Declaration
Authorization GetLegacyAuthorizationsID(string authID, string zapTraceSpan = null)
Parameters
Type | Name | Description |
---|---|---|
System. |
authID | The ID of the legacy authorization to get. |
System. |
zapTraceSpan | OpenTracing span context (optional) |
Returns
Type | Description |
---|---|
Authorization | Authorization |
Exceptions
Type | Condition |
---|---|
Influx |
Thrown when fails to make API call |
GetLegacyAuthorizationsIDAsync(String, String, CancellationToken)
Retrieve a legacy authorization
Declaration
System.Threading.Tasks.Task<Authorization> GetLegacyAuthorizationsIDAsync(string authID, string zapTraceSpan = null, CancellationToken cancellationToken = null)
Parameters
Type | Name | Description |
---|---|---|
System. |
authID | The ID of the legacy authorization to get. |
System. |
zapTraceSpan | OpenTracing span context (optional) |
Cancellation |
cancellationToken | Cancellation token |
Returns
Type | Description |
---|---|
System. |
Task of Authorization |
Exceptions
Type | Condition |
---|---|
Influx |
Thrown when fails to make API call |
GetLegacyAuthorizationsIDAsyncWithHttpInfo(String, String, CancellationToken)
Retrieve a legacy authorization
Declaration
System.Threading.Tasks.Task<ApiResponse<Authorization>> GetLegacyAuthorizationsIDAsyncWithHttpInfo(string authID, string zapTraceSpan = null, CancellationToken cancellationToken = null)
Parameters
Type | Name | Description |
---|---|---|
System. |
authID | The ID of the legacy authorization to get. |
System. |
zapTraceSpan | OpenTracing span context (optional) |
Cancellation |
cancellationToken | Cancellation token |
Returns
Type | Description |
---|---|
System. |
Task of ApiResponse (Authorization) |
Exceptions
Type | Condition |
---|---|
Influx |
Thrown when fails to make API call |
GetLegacyAuthorizationsIDWithHttpInfo(String, String)
Retrieve a legacy authorization
Declaration
ApiResponse<Authorization> GetLegacyAuthorizationsIDWithHttpInfo(string authID, string zapTraceSpan = null)
Parameters
Type | Name | Description |
---|---|---|
System. |
authID | The ID of the legacy authorization to get. |
System. |
zapTraceSpan | OpenTracing span context (optional) |
Returns
Type | Description |
---|---|
Influx |
ApiResponse of Authorization |
Exceptions
Type | Condition |
---|---|
Influx |
Thrown when fails to make API call |
GetLegacyAuthorizationsWithHttpInfo(String, String, String, String, String, String, String)
List all legacy authorizations
Declaration
ApiResponse<Authorizations> GetLegacyAuthorizationsWithHttpInfo(string zapTraceSpan = null, string userID = null, string user = null, string orgID = null, string org = null, string token = null, string authID = null)
Parameters
Type | Name | Description |
---|---|---|
System. |
zapTraceSpan | OpenTracing span context (optional) |
System. |
userID | Only show legacy authorizations that belong to a user ID. (optional) |
System. |
user | Only show legacy authorizations that belong to a user name. (optional) |
System. |
orgID | Only show legacy authorizations that belong to an organization ID. (optional) |
System. |
org | Only show legacy authorizations that belong to a organization name. (optional) |
System. |
token | Only show legacy authorizations with a specified token (auth name). (optional) |
System. |
authID | Only show legacy authorizations with a specified auth ID. (optional) |
Returns
Type | Description |
---|---|
Influx |
ApiResponse of Authorizations |
Exceptions
Type | Condition |
---|---|
Influx |
Thrown when fails to make API call |
PatchLegacyAuthorizationsID(String, AuthorizationUpdateRequest, String)
Update a legacy authorization to be active or inactive
Declaration
Authorization PatchLegacyAuthorizationsID(string authID, AuthorizationUpdateRequest authorizationUpdateRequest, string zapTraceSpan = null)
Parameters
Type | Name | Description |
---|---|---|
System. |
authID | The ID of the legacy authorization to update. |
Authorization |
authorizationUpdateRequest | Legacy authorization to update |
System. |
zapTraceSpan | OpenTracing span context (optional) |
Returns
Type | Description |
---|---|
Authorization | Authorization |
Exceptions
Type | Condition |
---|---|
Influx |
Thrown when fails to make API call |
PatchLegacyAuthorizationsIDAsync(String, AuthorizationUpdateRequest, String, CancellationToken)
Update a legacy authorization to be active or inactive
Declaration
System.Threading.Tasks.Task<Authorization> PatchLegacyAuthorizationsIDAsync(string authID, AuthorizationUpdateRequest authorizationUpdateRequest, string zapTraceSpan = null, CancellationToken cancellationToken = null)
Parameters
Type | Name | Description |
---|---|---|
System. |
authID | The ID of the legacy authorization to update. |
Authorization |
authorizationUpdateRequest | Legacy authorization to update |
System. |
zapTraceSpan | OpenTracing span context (optional) |
Cancellation |
cancellationToken | Cancellation token |
Returns
Type | Description |
---|---|
System. |
Task of Authorization |
Exceptions
Type | Condition |
---|---|
Influx |
Thrown when fails to make API call |
PatchLegacyAuthorizationsIDAsyncWithHttpInfo(String, AuthorizationUpdateRequest, String, CancellationToken)
Update a legacy authorization to be active or inactive
Declaration
System.Threading.Tasks.Task<ApiResponse<Authorization>> PatchLegacyAuthorizationsIDAsyncWithHttpInfo(string authID, AuthorizationUpdateRequest authorizationUpdateRequest, string zapTraceSpan = null, CancellationToken cancellationToken = null)
Parameters
Type | Name | Description |
---|---|---|
System. |
authID | The ID of the legacy authorization to update. |
Authorization |
authorizationUpdateRequest | Legacy authorization to update |
System. |
zapTraceSpan | OpenTracing span context (optional) |
Cancellation |
cancellationToken | Cancellation token |
Returns
Type | Description |
---|---|
System. |
Task of ApiResponse (Authorization) |
Exceptions
Type | Condition |
---|---|
Influx |
Thrown when fails to make API call |
PatchLegacyAuthorizationsIDWithHttpInfo(String, AuthorizationUpdateRequest, String)
Update a legacy authorization to be active or inactive
Declaration
ApiResponse<Authorization> PatchLegacyAuthorizationsIDWithHttpInfo(string authID, AuthorizationUpdateRequest authorizationUpdateRequest, string zapTraceSpan = null)
Parameters
Type | Name | Description |
---|---|---|
System. |
authID | The ID of the legacy authorization to update. |
Authorization |
authorizationUpdateRequest | Legacy authorization to update |
System. |
zapTraceSpan | OpenTracing span context (optional) |
Returns
Type | Description |
---|---|
Influx |
ApiResponse of Authorization |
Exceptions
Type | Condition |
---|---|
Influx |
Thrown when fails to make API call |
PostLegacyAuthorizations(LegacyAuthorizationPostRequest, String)
Create a legacy authorization
Declaration
Authorization PostLegacyAuthorizations(LegacyAuthorizationPostRequest legacyAuthorizationPostRequest, string zapTraceSpan = null)
Parameters
Type | Name | Description |
---|---|---|
Legacy |
legacyAuthorizationPostRequest | Legacy authorization to create |
System. |
zapTraceSpan | OpenTracing span context (optional) |
Returns
Type | Description |
---|---|
Authorization | Authorization |
Exceptions
Type | Condition |
---|---|
Influx |
Thrown when fails to make API call |
PostLegacyAuthorizationsAsync(LegacyAuthorizationPostRequest, String, CancellationToken)
Create a legacy authorization
Declaration
System.Threading.Tasks.Task<Authorization> PostLegacyAuthorizationsAsync(LegacyAuthorizationPostRequest legacyAuthorizationPostRequest, string zapTraceSpan = null, CancellationToken cancellationToken = null)
Parameters
Type | Name | Description |
---|---|---|
Legacy |
legacyAuthorizationPostRequest | Legacy authorization to create |
System. |
zapTraceSpan | OpenTracing span context (optional) |
Cancellation |
cancellationToken | Cancellation token |
Returns
Type | Description |
---|---|
System. |
Task of Authorization |
Exceptions
Type | Condition |
---|---|
Influx |
Thrown when fails to make API call |
PostLegacyAuthorizationsAsyncWithHttpInfo(LegacyAuthorizationPostRequest, String, CancellationToken)
Create a legacy authorization
Declaration
System.Threading.Tasks.Task<ApiResponse<Authorization>> PostLegacyAuthorizationsAsyncWithHttpInfo(LegacyAuthorizationPostRequest legacyAuthorizationPostRequest, string zapTraceSpan = null, CancellationToken cancellationToken = null)
Parameters
Type | Name | Description |
---|---|---|
Legacy |
legacyAuthorizationPostRequest | Legacy authorization to create |
System. |
zapTraceSpan | OpenTracing span context (optional) |
Cancellation |
cancellationToken | Cancellation token |
Returns
Type | Description |
---|---|
System. |
Task of ApiResponse (Authorization) |
Exceptions
Type | Condition |
---|---|
Influx |
Thrown when fails to make API call |
PostLegacyAuthorizationsIDPassword(String, PasswordResetBody, String)
Set a legacy authorization password
Declaration
void PostLegacyAuthorizationsIDPassword(string authID, PasswordResetBody passwordResetBody, string zapTraceSpan = null)
Parameters
Type | Name | Description |
---|---|---|
System. |
authID | The ID of the legacy authorization to update. |
Password |
passwordResetBody | New password |
System. |
zapTraceSpan | OpenTracing span context (optional) |
Exceptions
Type | Condition |
---|---|
Influx |
Thrown when fails to make API call |
PostLegacyAuthorizationsIDPasswordAsync(String, PasswordResetBody, String, CancellationToken)
Set a legacy authorization password
Declaration
System.Threading.Tasks.Task PostLegacyAuthorizationsIDPasswordAsync(string authID, PasswordResetBody passwordResetBody, string zapTraceSpan = null, CancellationToken cancellationToken = null)
Parameters
Type | Name | Description |
---|---|---|
System. |
authID | The ID of the legacy authorization to update. |
Password |
passwordResetBody | New password |
System. |
zapTraceSpan | OpenTracing span context (optional) |
Cancellation |
cancellationToken | Cancellation token |
Returns
Type | Description |
---|---|
System. |
Task of void |
Exceptions
Type | Condition |
---|---|
Influx |
Thrown when fails to make API call |
PostLegacyAuthorizationsIDPasswordAsyncWithHttpInfo(String, PasswordResetBody, String, CancellationToken)
Set a legacy authorization password
Declaration
System.Threading.Tasks.Task<ApiResponse<object>> PostLegacyAuthorizationsIDPasswordAsyncWithHttpInfo(string authID, PasswordResetBody passwordResetBody, string zapTraceSpan = null, CancellationToken cancellationToken = null)
Parameters
Type | Name | Description |
---|---|---|
System. |
authID | The ID of the legacy authorization to update. |
Password |
passwordResetBody | New password |
System. |
zapTraceSpan | OpenTracing span context (optional) |
Cancellation |
cancellationToken | Cancellation token |
Returns
Type | Description |
---|---|
System. |
Task of ApiResponse |
Exceptions
Type | Condition |
---|---|
Influx |
Thrown when fails to make API call |
PostLegacyAuthorizationsIDPasswordWithHttpInfo(String, PasswordResetBody, String)
Set a legacy authorization password
Declaration
ApiResponse<object> PostLegacyAuthorizationsIDPasswordWithHttpInfo(string authID, PasswordResetBody passwordResetBody, string zapTraceSpan = null)
Parameters
Type | Name | Description |
---|---|---|
System. |
authID | The ID of the legacy authorization to update. |
Password |
passwordResetBody | New password |
System. |
zapTraceSpan | OpenTracing span context (optional) |
Returns
Type | Description |
---|---|
Influx |
ApiResponse of Object(void) |
Exceptions
Type | Condition |
---|---|
Influx |
Thrown when fails to make API call |
PostLegacyAuthorizationsWithHttpInfo(LegacyAuthorizationPostRequest, String)
Create a legacy authorization
Declaration
ApiResponse<Authorization> PostLegacyAuthorizationsWithHttpInfo(LegacyAuthorizationPostRequest legacyAuthorizationPostRequest, string zapTraceSpan = null)
Parameters
Type | Name | Description |
---|---|---|
Legacy |
legacyAuthorizationPostRequest | Legacy authorization to create |
System. |
zapTraceSpan | OpenTracing span context (optional) |
Returns
Type | Description |
---|---|
Influx |
ApiResponse of Authorization |
Exceptions
Type | Condition |
---|---|
Influx |
Thrown when fails to make API call |