LUSID C# SDK
Public Member Functions | List of all members
Lusid.Sdk.Api.ICutLabelDefinitionsApiAsync Interface Reference

Represents a collection of functions to interact with the API endpoints More...

Inheritance diagram for Lusid.Sdk.Api.ICutLabelDefinitionsApiAsync:
Inheritance graph
[legend]

Public Member Functions

System.Threading.Tasks.Task< CutLabelDefinitionCreateCutLabelDefinitionAsync (CreateCutLabelDefinitionRequest? createCutLabelDefinitionRequest=default(CreateCutLabelDefinitionRequest?), int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken))
 CreateCutLabelDefinition: Create a Cut Label More...
 
System.Threading.Tasks.Task< ApiResponse< CutLabelDefinition > > CreateCutLabelDefinitionWithHttpInfoAsync (CreateCutLabelDefinitionRequest? createCutLabelDefinitionRequest=default(CreateCutLabelDefinitionRequest?), int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken))
 CreateCutLabelDefinition: Create a Cut Label More...
 
System.Threading.Tasks.Task< DateTimeOffset > DeleteCutLabelDefinitionAsync (string code, int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken))
 DeleteCutLabelDefinition: Delete a Cut Label More...
 
System.Threading.Tasks.Task< ApiResponse< DateTimeOffset > > DeleteCutLabelDefinitionWithHttpInfoAsync (string code, int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken))
 DeleteCutLabelDefinition: Delete a Cut Label More...
 
System.Threading.Tasks.Task< CutLabelDefinitionGetCutLabelDefinitionAsync (string code, DateTimeOffset? asAt=default(DateTimeOffset?), int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken))
 GetCutLabelDefinition: Get a Cut Label More...
 
System.Threading.Tasks.Task< ApiResponse< CutLabelDefinition > > GetCutLabelDefinitionWithHttpInfoAsync (string code, DateTimeOffset? asAt=default(DateTimeOffset?), int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken))
 GetCutLabelDefinition: Get a Cut Label More...
 
System.Threading.Tasks.Task< PagedResourceListOfCutLabelDefinitionListCutLabelDefinitionsAsync (DateTimeOffset? asAt=default(DateTimeOffset?), List< string >? sortBy=default(List< string >?), int? limit=default(int?), string? filter=default(string?), string? page=default(string?), int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken))
 ListCutLabelDefinitions: List Existing Cut Labels More...
 
System.Threading.Tasks.Task< ApiResponse< PagedResourceListOfCutLabelDefinition > > ListCutLabelDefinitionsWithHttpInfoAsync (DateTimeOffset? asAt=default(DateTimeOffset?), List< string >? sortBy=default(List< string >?), int? limit=default(int?), string? filter=default(string?), string? page=default(string?), int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken))
 ListCutLabelDefinitions: List Existing Cut Labels More...
 
System.Threading.Tasks.Task< CutLabelDefinitionUpdateCutLabelDefinitionAsync (string code, UpdateCutLabelDefinitionRequest? updateCutLabelDefinitionRequest=default(UpdateCutLabelDefinitionRequest?), int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken))
 UpdateCutLabelDefinition: Update a Cut Label More...
 
System.Threading.Tasks.Task< ApiResponse< CutLabelDefinition > > UpdateCutLabelDefinitionWithHttpInfoAsync (string code, UpdateCutLabelDefinitionRequest? updateCutLabelDefinitionRequest=default(UpdateCutLabelDefinitionRequest?), int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken))
 UpdateCutLabelDefinition: Update a Cut Label More...
 
- Public Member Functions inherited from Lusid.Sdk.Client.IApiAccessor
string GetBasePath ()
 Gets the base path of the API client. More...
 

Additional Inherited Members

- Properties inherited from Lusid.Sdk.Client.IApiAccessor
IReadableConfiguration Configuration [get, set]
 Gets or sets the configuration object More...
 
ExceptionFactory ExceptionFactory [get, set]
 Provides a factory method hook for the creation of exceptions. More...
 

Detailed Description

Represents a collection of functions to interact with the API endpoints

Member Function Documentation

◆ CreateCutLabelDefinitionAsync()

System.Threading.Tasks.Task<CutLabelDefinition> Lusid.Sdk.Api.ICutLabelDefinitionsApiAsync.CreateCutLabelDefinitionAsync ( CreateCutLabelDefinitionRequest createCutLabelDefinitionRequest = default(CreateCutLabelDefinitionRequest?),
int  operationIndex = 0,
System.Threading.CancellationToken  cancellationToken = default(System.Threading.CancellationToken) 
)

CreateCutLabelDefinition: Create a Cut Label

Create a Cut Label valid in all scopes

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
createCutLabelDefinitionRequestThe cut label definition (optional)
operationIndexIndex associated with the operation.
cancellationTokenCancellation Token to cancel the request.
Returns
Task of CutLabelDefinition

Implemented in Lusid.Sdk.Api.CutLabelDefinitionsApi.

◆ CreateCutLabelDefinitionWithHttpInfoAsync()

System.Threading.Tasks.Task<ApiResponse<CutLabelDefinition> > Lusid.Sdk.Api.ICutLabelDefinitionsApiAsync.CreateCutLabelDefinitionWithHttpInfoAsync ( CreateCutLabelDefinitionRequest createCutLabelDefinitionRequest = default(CreateCutLabelDefinitionRequest?),
int  operationIndex = 0,
System.Threading.CancellationToken  cancellationToken = default(System.Threading.CancellationToken) 
)

CreateCutLabelDefinition: Create a Cut Label

Create a Cut Label valid in all scopes

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
createCutLabelDefinitionRequestThe cut label definition (optional)
operationIndexIndex associated with the operation.
cancellationTokenCancellation Token to cancel the request.
Returns
Task of ApiResponse (CutLabelDefinition)

Implemented in Lusid.Sdk.Api.CutLabelDefinitionsApi.

◆ DeleteCutLabelDefinitionAsync()

System.Threading.Tasks.Task<DateTimeOffset> Lusid.Sdk.Api.ICutLabelDefinitionsApiAsync.DeleteCutLabelDefinitionAsync ( string  code,
int  operationIndex = 0,
System.Threading.CancellationToken  cancellationToken = default(System.Threading.CancellationToken) 
)

DeleteCutLabelDefinition: Delete a Cut Label

Delete a specified cut label

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
codeThe Code of the Cut Label that is being Deleted
operationIndexIndex associated with the operation.
cancellationTokenCancellation Token to cancel the request.
Returns
Task of DateTimeOffset

Implemented in Lusid.Sdk.Api.CutLabelDefinitionsApi.

◆ DeleteCutLabelDefinitionWithHttpInfoAsync()

System.Threading.Tasks.Task<ApiResponse<DateTimeOffset> > Lusid.Sdk.Api.ICutLabelDefinitionsApiAsync.DeleteCutLabelDefinitionWithHttpInfoAsync ( string  code,
int  operationIndex = 0,
System.Threading.CancellationToken  cancellationToken = default(System.Threading.CancellationToken) 
)

DeleteCutLabelDefinition: Delete a Cut Label

Delete a specified cut label

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
codeThe Code of the Cut Label that is being Deleted
operationIndexIndex associated with the operation.
cancellationTokenCancellation Token to cancel the request.
Returns
Task of ApiResponse (DateTimeOffset)

Implemented in Lusid.Sdk.Api.CutLabelDefinitionsApi.

◆ GetCutLabelDefinitionAsync()

System.Threading.Tasks.Task<CutLabelDefinition> Lusid.Sdk.Api.ICutLabelDefinitionsApiAsync.GetCutLabelDefinitionAsync ( string  code,
DateTimeOffset?  asAt = default(DateTimeOffset?),
int  operationIndex = 0,
System.Threading.CancellationToken  cancellationToken = default(System.Threading.CancellationToken) 
)

GetCutLabelDefinition: Get a Cut Label

Get a specified cut label at a given time

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
codeThe Code of the Cut Label that is being queried
asAtThe time at which to get the Cut Label (optional)
operationIndexIndex associated with the operation.
cancellationTokenCancellation Token to cancel the request.
Returns
Task of CutLabelDefinition

Implemented in Lusid.Sdk.Api.CutLabelDefinitionsApi.

◆ GetCutLabelDefinitionWithHttpInfoAsync()

System.Threading.Tasks.Task<ApiResponse<CutLabelDefinition> > Lusid.Sdk.Api.ICutLabelDefinitionsApiAsync.GetCutLabelDefinitionWithHttpInfoAsync ( string  code,
DateTimeOffset?  asAt = default(DateTimeOffset?),
int  operationIndex = 0,
System.Threading.CancellationToken  cancellationToken = default(System.Threading.CancellationToken) 
)

GetCutLabelDefinition: Get a Cut Label

Get a specified cut label at a given time

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
codeThe Code of the Cut Label that is being queried
asAtThe time at which to get the Cut Label (optional)
operationIndexIndex associated with the operation.
cancellationTokenCancellation Token to cancel the request.
Returns
Task of ApiResponse (CutLabelDefinition)

Implemented in Lusid.Sdk.Api.CutLabelDefinitionsApi.

◆ ListCutLabelDefinitionsAsync()

System.Threading.Tasks.Task<PagedResourceListOfCutLabelDefinition> Lusid.Sdk.Api.ICutLabelDefinitionsApiAsync.ListCutLabelDefinitionsAsync ( DateTimeOffset?  asAt = default(DateTimeOffset?),
List< string >?  sortBy = default(List< string >?),
int?  limit = default(int?),
string?  filter = default(string?),
string?  page = default(string?),
int  operationIndex = 0,
System.Threading.CancellationToken  cancellationToken = default(System.Threading.CancellationToken) 
)

ListCutLabelDefinitions: List Existing Cut Labels

List all the Cut Label Definitions that are valid at the given AsAt time

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
asAtOptional. The As At time at which listed Cut Labels are valid (optional)
sortByOptional. Order the results by these fields. Use use the &#39;-&#39; sign to denote descending order e.g. -MyFieldName (optional)
limitOptional. When paginating, limit the number of returned results to this many. (optional)
filterOptional. Expression to filter the result set. For example, to filter on code, use &quot;code eq &#39;string&#39;&quot; Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid. (optional)
pageThe pagination token to use to continue listing cut labels from a previous call This value is returned from the previous call. If a pagination token is provided the sortBy, filter, and asAt fields must not have changed since the original request. (optional)
operationIndexIndex associated with the operation.
cancellationTokenCancellation Token to cancel the request.
Returns
Task of PagedResourceListOfCutLabelDefinition

Implemented in Lusid.Sdk.Api.CutLabelDefinitionsApi.

◆ ListCutLabelDefinitionsWithHttpInfoAsync()

System.Threading.Tasks.Task<ApiResponse<PagedResourceListOfCutLabelDefinition> > Lusid.Sdk.Api.ICutLabelDefinitionsApiAsync.ListCutLabelDefinitionsWithHttpInfoAsync ( DateTimeOffset?  asAt = default(DateTimeOffset?),
List< string >?  sortBy = default(List< string >?),
int?  limit = default(int?),
string?  filter = default(string?),
string?  page = default(string?),
int  operationIndex = 0,
System.Threading.CancellationToken  cancellationToken = default(System.Threading.CancellationToken) 
)

ListCutLabelDefinitions: List Existing Cut Labels

List all the Cut Label Definitions that are valid at the given AsAt time

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
asAtOptional. The As At time at which listed Cut Labels are valid (optional)
sortByOptional. Order the results by these fields. Use use the &#39;-&#39; sign to denote descending order e.g. -MyFieldName (optional)
limitOptional. When paginating, limit the number of returned results to this many. (optional)
filterOptional. Expression to filter the result set. For example, to filter on code, use &quot;code eq &#39;string&#39;&quot; Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid. (optional)
pageThe pagination token to use to continue listing cut labels from a previous call This value is returned from the previous call. If a pagination token is provided the sortBy, filter, and asAt fields must not have changed since the original request. (optional)
operationIndexIndex associated with the operation.
cancellationTokenCancellation Token to cancel the request.
Returns
Task of ApiResponse (PagedResourceListOfCutLabelDefinition)

Implemented in Lusid.Sdk.Api.CutLabelDefinitionsApi.

◆ UpdateCutLabelDefinitionAsync()

System.Threading.Tasks.Task<CutLabelDefinition> Lusid.Sdk.Api.ICutLabelDefinitionsApiAsync.UpdateCutLabelDefinitionAsync ( string  code,
UpdateCutLabelDefinitionRequest updateCutLabelDefinitionRequest = default(UpdateCutLabelDefinitionRequest?),
int  operationIndex = 0,
System.Threading.CancellationToken  cancellationToken = default(System.Threading.CancellationToken) 
)

UpdateCutLabelDefinition: Update a Cut Label

Update a specified cut label

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
codeThe Code of the Cut Label that is being updated
updateCutLabelDefinitionRequestThe cut label update definition (optional)
operationIndexIndex associated with the operation.
cancellationTokenCancellation Token to cancel the request.
Returns
Task of CutLabelDefinition

Implemented in Lusid.Sdk.Api.CutLabelDefinitionsApi.

◆ UpdateCutLabelDefinitionWithHttpInfoAsync()

System.Threading.Tasks.Task<ApiResponse<CutLabelDefinition> > Lusid.Sdk.Api.ICutLabelDefinitionsApiAsync.UpdateCutLabelDefinitionWithHttpInfoAsync ( string  code,
UpdateCutLabelDefinitionRequest updateCutLabelDefinitionRequest = default(UpdateCutLabelDefinitionRequest?),
int  operationIndex = 0,
System.Threading.CancellationToken  cancellationToken = default(System.Threading.CancellationToken) 
)

UpdateCutLabelDefinition: Update a Cut Label

Update a specified cut label

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
codeThe Code of the Cut Label that is being updated
updateCutLabelDefinitionRequestThe cut label update definition (optional)
operationIndexIndex associated with the operation.
cancellationTokenCancellation Token to cancel the request.
Returns
Task of ApiResponse (CutLabelDefinition)

Implemented in Lusid.Sdk.Api.CutLabelDefinitionsApi.


The documentation for this interface was generated from the following file: