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

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

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

Public Member Functions

System.Threading.Tasks.Task< RelationDefinitionCreateRelationDefinitionAsync (CreateRelationDefinitionRequest createRelationDefinitionRequest, int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken), ConfigurationOptions? opts=null)
 [EXPERIMENTAL] CreateRelationDefinition: Create a relation definition More...
 
System.Threading.Tasks.Task< Lusid.Sdk.Client.ApiResponse< RelationDefinition > > CreateRelationDefinitionWithHttpInfoAsync (CreateRelationDefinitionRequest createRelationDefinitionRequest, int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken), ConfigurationOptions? opts=null)
 [EXPERIMENTAL] CreateRelationDefinition: Create a relation definition More...
 
System.Threading.Tasks.Task< DeletedEntityResponseDeleteRelationDefinitionAsync (string scope, string code, int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken), ConfigurationOptions? opts=null)
 [EXPERIMENTAL] DeleteRelationDefinition: Delete relation definition More...
 
System.Threading.Tasks.Task< Lusid.Sdk.Client.ApiResponse< DeletedEntityResponse > > DeleteRelationDefinitionWithHttpInfoAsync (string scope, string code, int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken), ConfigurationOptions? opts=null)
 [EXPERIMENTAL] DeleteRelationDefinition: Delete relation definition More...
 
System.Threading.Tasks.Task< RelationDefinitionGetRelationDefinitionAsync (string scope, string code, DateTimeOffset? asAt=default(DateTimeOffset?), int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken), ConfigurationOptions? opts=null)
 [EXPERIMENTAL] GetRelationDefinition: Get relation definition More...
 
System.Threading.Tasks.Task< Lusid.Sdk.Client.ApiResponse< RelationDefinition > > GetRelationDefinitionWithHttpInfoAsync (string scope, string code, DateTimeOffset? asAt=default(DateTimeOffset?), int operationIndex=0, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken), ConfigurationOptions? opts=null)
 [EXPERIMENTAL] GetRelationDefinition: Get relation definition More...
 

Detailed Description

Represents a collection of functions to interact with the API endpoints

Member Function Documentation

◆ CreateRelationDefinitionAsync()

System.Threading.Tasks.Task<RelationDefinition> Lusid.Sdk.Api.IRelationDefinitionsApiAsync.CreateRelationDefinitionAsync ( CreateRelationDefinitionRequest  createRelationDefinitionRequest,
int  operationIndex = 0,
System.Threading.CancellationToken  cancellationToken = default(System.Threading.CancellationToken),
ConfigurationOptions opts = null 
)

[EXPERIMENTAL] CreateRelationDefinition: Create a relation definition

Define a new relation.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
createRelationDefinitionRequestThe definition of the new relation.
operationIndexIndex associated with the operation.
cancellationTokenCancellation Token to cancel the request.
optsOptions for this request.
Returns
Task of RelationDefinition

Implemented in Lusid.Sdk.Api.RelationDefinitionsApi.

◆ CreateRelationDefinitionWithHttpInfoAsync()

System.Threading.Tasks.Task<Lusid.Sdk.Client.ApiResponse<RelationDefinition> > Lusid.Sdk.Api.IRelationDefinitionsApiAsync.CreateRelationDefinitionWithHttpInfoAsync ( CreateRelationDefinitionRequest  createRelationDefinitionRequest,
int  operationIndex = 0,
System.Threading.CancellationToken  cancellationToken = default(System.Threading.CancellationToken),
ConfigurationOptions opts = null 
)

[EXPERIMENTAL] CreateRelationDefinition: Create a relation definition

Define a new relation.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
createRelationDefinitionRequestThe definition of the new relation.
operationIndexIndex associated with the operation.
cancellationTokenCancellation Token to cancel the request.
optsOptions for this request.
Returns
Task of ApiResponse (RelationDefinition)

Implemented in Lusid.Sdk.Api.RelationDefinitionsApi.

◆ DeleteRelationDefinitionAsync()

System.Threading.Tasks.Task<DeletedEntityResponse> Lusid.Sdk.Api.IRelationDefinitionsApiAsync.DeleteRelationDefinitionAsync ( string  scope,
string  code,
int  operationIndex = 0,
System.Threading.CancellationToken  cancellationToken = default(System.Threading.CancellationToken),
ConfigurationOptions opts = null 
)

[EXPERIMENTAL] DeleteRelationDefinition: Delete relation definition

Delete the definition of the specified relation.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
scopeThe scope of the relation to be deleted.
codeThe code of the relation to be deleted. Together with the domain and scope this uniquely identifies the relation.
operationIndexIndex associated with the operation.
cancellationTokenCancellation Token to cancel the request.
optsOptions for this request.
Returns
Task of DeletedEntityResponse

Implemented in Lusid.Sdk.Api.RelationDefinitionsApi.

◆ DeleteRelationDefinitionWithHttpInfoAsync()

System.Threading.Tasks.Task<Lusid.Sdk.Client.ApiResponse<DeletedEntityResponse> > Lusid.Sdk.Api.IRelationDefinitionsApiAsync.DeleteRelationDefinitionWithHttpInfoAsync ( string  scope,
string  code,
int  operationIndex = 0,
System.Threading.CancellationToken  cancellationToken = default(System.Threading.CancellationToken),
ConfigurationOptions opts = null 
)

[EXPERIMENTAL] DeleteRelationDefinition: Delete relation definition

Delete the definition of the specified relation.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
scopeThe scope of the relation to be deleted.
codeThe code of the relation to be deleted. Together with the domain and scope this uniquely identifies the relation.
operationIndexIndex associated with the operation.
cancellationTokenCancellation Token to cancel the request.
optsOptions for this request.
Returns
Task of ApiResponse (DeletedEntityResponse)

Implemented in Lusid.Sdk.Api.RelationDefinitionsApi.

◆ GetRelationDefinitionAsync()

System.Threading.Tasks.Task<RelationDefinition> Lusid.Sdk.Api.IRelationDefinitionsApiAsync.GetRelationDefinitionAsync ( string  scope,
string  code,
DateTimeOffset?  asAt = default(DateTimeOffset?),
int  operationIndex = 0,
System.Threading.CancellationToken  cancellationToken = default(System.Threading.CancellationToken),
ConfigurationOptions opts = null 
)

[EXPERIMENTAL] GetRelationDefinition: Get relation definition

Retrieve the definition of a specified relation.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
scopeThe scope of the specified relation.
codeThe code of the specified relation. Together with the domain and scope this uniquely identifies the relation.
asAtThe asAt datetime at which to retrieve the relation definition. Defaults to return the latest version of the definition if not specified. (optional)
operationIndexIndex associated with the operation.
cancellationTokenCancellation Token to cancel the request.
optsOptions for this request.
Returns
Task of RelationDefinition

Implemented in Lusid.Sdk.Api.RelationDefinitionsApi.

◆ GetRelationDefinitionWithHttpInfoAsync()

System.Threading.Tasks.Task<Lusid.Sdk.Client.ApiResponse<RelationDefinition> > Lusid.Sdk.Api.IRelationDefinitionsApiAsync.GetRelationDefinitionWithHttpInfoAsync ( string  scope,
string  code,
DateTimeOffset?  asAt = default(DateTimeOffset?),
int  operationIndex = 0,
System.Threading.CancellationToken  cancellationToken = default(System.Threading.CancellationToken),
ConfigurationOptions opts = null 
)

[EXPERIMENTAL] GetRelationDefinition: Get relation definition

Retrieve the definition of a specified relation.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
scopeThe scope of the specified relation.
codeThe code of the specified relation. Together with the domain and scope this uniquely identifies the relation.
asAtThe asAt datetime at which to retrieve the relation definition. Defaults to return the latest version of the definition if not specified. (optional)
operationIndexIndex associated with the operation.
cancellationTokenCancellation Token to cancel the request.
optsOptions for this request.
Returns
Task of ApiResponse (RelationDefinition)

Implemented in Lusid.Sdk.Api.RelationDefinitionsApi.


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