LUSID C# SDK
|
Represents a collection of functions to interact with the API endpoints More...
Public Member Functions | |
System.Threading.Tasks.Task< SequenceDefinition > | CreateSequenceAsync (string scope, CreateSequenceRequest createSequenceRequest, int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken), ConfigurationOptions? opts=null) |
[EARLY ACCESS] CreateSequence: Create a new sequence More... | |
System.Threading.Tasks.Task< Lusid.Sdk.Client.ApiResponse< SequenceDefinition > > | CreateSequenceWithHttpInfoAsync (string scope, CreateSequenceRequest createSequenceRequest, int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken), ConfigurationOptions? opts=null) |
[EARLY ACCESS] CreateSequence: Create a new sequence More... | |
System.Threading.Tasks.Task< SequenceDefinition > | GetSequenceAsync (string scope, string code, int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken), ConfigurationOptions? opts=null) |
[EARLY ACCESS] GetSequence: Get a specified sequence More... | |
System.Threading.Tasks.Task< Lusid.Sdk.Client.ApiResponse< SequenceDefinition > > | GetSequenceWithHttpInfoAsync (string scope, string code, int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken), ConfigurationOptions? opts=null) |
[EARLY ACCESS] GetSequence: Get a specified sequence More... | |
System.Threading.Tasks.Task< PagedResourceListOfSequenceDefinition > | ListSequencesAsync (string? page=default(string?), int? limit=default(int?), string? filter=default(string?), int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken), ConfigurationOptions? opts=null) |
[EARLY ACCESS] ListSequences: List Sequences More... | |
System.Threading.Tasks.Task< Lusid.Sdk.Client.ApiResponse< PagedResourceListOfSequenceDefinition > > | ListSequencesWithHttpInfoAsync (string? page=default(string?), int? limit=default(int?), string? filter=default(string?), int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken), ConfigurationOptions? opts=null) |
[EARLY ACCESS] ListSequences: List Sequences More... | |
System.Threading.Tasks.Task< NextValueInSequenceResponse > | NextAsync (string scope, string code, int? batch=default(int?), int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken), ConfigurationOptions? opts=null) |
[EARLY ACCESS] Next: Get next values from sequence More... | |
System.Threading.Tasks.Task< Lusid.Sdk.Client.ApiResponse< NextValueInSequenceResponse > > | NextWithHttpInfoAsync (string scope, string code, int? batch=default(int?), int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken), ConfigurationOptions? opts=null) |
[EARLY ACCESS] Next: Get next values from sequence More... | |
Represents a collection of functions to interact with the API endpoints
System.Threading.Tasks.Task<SequenceDefinition> Lusid.Sdk.Api.ISequencesApiAsync.CreateSequenceAsync | ( | string | scope, |
CreateSequenceRequest | createSequenceRequest, | ||
int | operationIndex = 0 , |
||
System.Threading.CancellationToken | cancellationToken = default(System.Threading.CancellationToken) , |
||
ConfigurationOptions? | opts = null |
||
) |
[EARLY ACCESS] CreateSequence: Create a new sequence
Create a new sequence
Lusid.Sdk.Client.ApiException | Thrown when fails to make API call |
scope | Scope of the sequence. |
createSequenceRequest | Request to create sequence |
operationIndex | Index associated with the operation. |
cancellationToken | Cancellation Token to cancel the request. |
opts | Options for this request. |
Implemented in Lusid.Sdk.Api.SequencesApi.
System.Threading.Tasks.Task<Lusid.Sdk.Client.ApiResponse<SequenceDefinition> > Lusid.Sdk.Api.ISequencesApiAsync.CreateSequenceWithHttpInfoAsync | ( | string | scope, |
CreateSequenceRequest | createSequenceRequest, | ||
int | operationIndex = 0 , |
||
System.Threading.CancellationToken | cancellationToken = default(System.Threading.CancellationToken) , |
||
ConfigurationOptions? | opts = null |
||
) |
[EARLY ACCESS] CreateSequence: Create a new sequence
Create a new sequence
Lusid.Sdk.Client.ApiException | Thrown when fails to make API call |
scope | Scope of the sequence. |
createSequenceRequest | Request to create sequence |
operationIndex | Index associated with the operation. |
cancellationToken | Cancellation Token to cancel the request. |
opts | Options for this request. |
Implemented in Lusid.Sdk.Api.SequencesApi.
System.Threading.Tasks.Task<SequenceDefinition> Lusid.Sdk.Api.ISequencesApiAsync.GetSequenceAsync | ( | string | scope, |
string | code, | ||
int | operationIndex = 0 , |
||
System.Threading.CancellationToken | cancellationToken = default(System.Threading.CancellationToken) , |
||
ConfigurationOptions? | opts = null |
||
) |
[EARLY ACCESS] GetSequence: Get a specified sequence
Return the details of a specified sequence
Lusid.Sdk.Client.ApiException | Thrown when fails to make API call |
scope | Scope of the sequence. |
code | Code of the sequence. This together with stated scope uniquely identifies the sequence. |
operationIndex | Index associated with the operation. |
cancellationToken | Cancellation Token to cancel the request. |
opts | Options for this request. |
Implemented in Lusid.Sdk.Api.SequencesApi.
System.Threading.Tasks.Task<Lusid.Sdk.Client.ApiResponse<SequenceDefinition> > Lusid.Sdk.Api.ISequencesApiAsync.GetSequenceWithHttpInfoAsync | ( | string | scope, |
string | code, | ||
int | operationIndex = 0 , |
||
System.Threading.CancellationToken | cancellationToken = default(System.Threading.CancellationToken) , |
||
ConfigurationOptions? | opts = null |
||
) |
[EARLY ACCESS] GetSequence: Get a specified sequence
Return the details of a specified sequence
Lusid.Sdk.Client.ApiException | Thrown when fails to make API call |
scope | Scope of the sequence. |
code | Code of the sequence. This together with stated scope uniquely identifies the sequence. |
operationIndex | Index associated with the operation. |
cancellationToken | Cancellation Token to cancel the request. |
opts | Options for this request. |
Implemented in Lusid.Sdk.Api.SequencesApi.
System.Threading.Tasks.Task<PagedResourceListOfSequenceDefinition> Lusid.Sdk.Api.ISequencesApiAsync.ListSequencesAsync | ( | string? | page = default(string?) , |
int? | limit = default(int?) , |
||
string? | filter = default(string?) , |
||
int | operationIndex = 0 , |
||
System.Threading.CancellationToken | cancellationToken = default(System.Threading.CancellationToken) , |
||
ConfigurationOptions? | opts = null |
||
) |
[EARLY ACCESS] ListSequences: List Sequences
List sequences which satisfies filtering criteria.
Lusid.Sdk.Client.ApiException | Thrown when fails to make API call |
page | The pagination token to use to continue listing sequences from a previous call to list sequences. This value is returned from the previous call. (optional) |
limit | When paginating, limit the number of returned results to this many. Defaults to 500 if not specified. (optional) |
filter | Expression to filter the result set. Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid. (optional) |
operationIndex | Index associated with the operation. |
cancellationToken | Cancellation Token to cancel the request. |
opts | Options for this request. |
Implemented in Lusid.Sdk.Api.SequencesApi.
System.Threading.Tasks.Task<Lusid.Sdk.Client.ApiResponse<PagedResourceListOfSequenceDefinition> > Lusid.Sdk.Api.ISequencesApiAsync.ListSequencesWithHttpInfoAsync | ( | string? | page = default(string?) , |
int? | limit = default(int?) , |
||
string? | filter = default(string?) , |
||
int | operationIndex = 0 , |
||
System.Threading.CancellationToken | cancellationToken = default(System.Threading.CancellationToken) , |
||
ConfigurationOptions? | opts = null |
||
) |
[EARLY ACCESS] ListSequences: List Sequences
List sequences which satisfies filtering criteria.
Lusid.Sdk.Client.ApiException | Thrown when fails to make API call |
page | The pagination token to use to continue listing sequences from a previous call to list sequences. This value is returned from the previous call. (optional) |
limit | When paginating, limit the number of returned results to this many. Defaults to 500 if not specified. (optional) |
filter | Expression to filter the result set. Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid. (optional) |
operationIndex | Index associated with the operation. |
cancellationToken | Cancellation Token to cancel the request. |
opts | Options for this request. |
Implemented in Lusid.Sdk.Api.SequencesApi.
System.Threading.Tasks.Task<NextValueInSequenceResponse> Lusid.Sdk.Api.ISequencesApiAsync.NextAsync | ( | string | scope, |
string | code, | ||
int? | batch = default(int?) , |
||
int | operationIndex = 0 , |
||
System.Threading.CancellationToken | cancellationToken = default(System.Threading.CancellationToken) , |
||
ConfigurationOptions? | opts = null |
||
) |
[EARLY ACCESS] Next: Get next values from sequence
Get the next set of values from a specified sequence
Lusid.Sdk.Client.ApiException | Thrown when fails to make API call |
scope | Scope of the sequence. |
code | Code of the sequence. This together with stated scope uniquely identifies the sequence. |
batch | Number of sequences items to return for the specified sequence. Default to 1 if not specified. (optional) |
operationIndex | Index associated with the operation. |
cancellationToken | Cancellation Token to cancel the request. |
opts | Options for this request. |
Implemented in Lusid.Sdk.Api.SequencesApi.
System.Threading.Tasks.Task<Lusid.Sdk.Client.ApiResponse<NextValueInSequenceResponse> > Lusid.Sdk.Api.ISequencesApiAsync.NextWithHttpInfoAsync | ( | string | scope, |
string | code, | ||
int? | batch = default(int?) , |
||
int | operationIndex = 0 , |
||
System.Threading.CancellationToken | cancellationToken = default(System.Threading.CancellationToken) , |
||
ConfigurationOptions? | opts = null |
||
) |
[EARLY ACCESS] Next: Get next values from sequence
Get the next set of values from a specified sequence
Lusid.Sdk.Client.ApiException | Thrown when fails to make API call |
scope | Scope of the sequence. |
code | Code of the sequence. This together with stated scope uniquely identifies the sequence. |
batch | Number of sequences items to return for the specified sequence. Default to 1 if not specified. (optional) |
operationIndex | Index associated with the operation. |
cancellationToken | Cancellation Token to cancel the request. |
opts | Options for this request. |
Implemented in Lusid.Sdk.Api.SequencesApi.