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

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

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

Public Member Functions

PropertyDefinition CreateDerivedPropertyDefinition (CreateDerivedPropertyDefinitionRequest createDerivedPropertyDefinitionRequest)
 [EARLY ACCESS] Create derived property definition More...
 
ApiResponse< PropertyDefinitionCreateDerivedPropertyDefinitionWithHttpInfo (CreateDerivedPropertyDefinitionRequest createDerivedPropertyDefinitionRequest)
 [EARLY ACCESS] Create derived property definition More...
 
PropertyDefinition CreatePropertyDefinition (CreatePropertyDefinitionRequest createPropertyDefinitionRequest)
 Create property definition More...
 
ApiResponse< PropertyDefinitionCreatePropertyDefinitionWithHttpInfo (CreatePropertyDefinitionRequest createPropertyDefinitionRequest)
 Create property definition More...
 
DeletedEntityResponse DeletePropertyDefinition (string domain, string scope, string code)
 Delete property definition More...
 
ApiResponse< DeletedEntityResponseDeletePropertyDefinitionWithHttpInfo (string domain, string scope, string code)
 Delete property definition More...
 
ResourceListOfPropertyDefinition GetMultiplePropertyDefinitions (List< string > propertyKeys, DateTimeOffset? asAt=default(DateTimeOffset?), string filter=default(string))
 Get multiple property definitions More...
 
ApiResponse< ResourceListOfPropertyDefinitionGetMultiplePropertyDefinitionsWithHttpInfo (List< string > propertyKeys, DateTimeOffset? asAt=default(DateTimeOffset?), string filter=default(string))
 Get multiple property definitions More...
 
PropertyDefinition GetPropertyDefinition (string domain, string scope, string code, DateTimeOffset? asAt=default(DateTimeOffset?))
 Get property definition More...
 
ApiResponse< PropertyDefinitionGetPropertyDefinitionWithHttpInfo (string domain, string scope, string code, DateTimeOffset? asAt=default(DateTimeOffset?))
 Get property definition More...
 
PropertyDefinition UpdatePropertyDefinition (string domain, string scope, string code, UpdatePropertyDefinitionRequest updatePropertyDefinitionRequest)
 Update property definition More...
 
ApiResponse< PropertyDefinitionUpdatePropertyDefinitionWithHttpInfo (string domain, string scope, string code, UpdatePropertyDefinitionRequest updatePropertyDefinitionRequest)
 Update property definition 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

◆ CreateDerivedPropertyDefinition()

PropertyDefinition Lusid.Sdk.Api.IPropertyDefinitionsApiSync.CreateDerivedPropertyDefinition ( CreateDerivedPropertyDefinitionRequest  createDerivedPropertyDefinitionRequest)

[EARLY ACCESS] Create derived property definition

Define a new derived property.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
createDerivedPropertyDefinitionRequestThe definition of the new derived property.
Returns
PropertyDefinition

Implemented in Lusid.Sdk.Api.PropertyDefinitionsApi.

◆ CreateDerivedPropertyDefinitionWithHttpInfo()

ApiResponse<PropertyDefinition> Lusid.Sdk.Api.IPropertyDefinitionsApiSync.CreateDerivedPropertyDefinitionWithHttpInfo ( CreateDerivedPropertyDefinitionRequest  createDerivedPropertyDefinitionRequest)

[EARLY ACCESS] Create derived property definition

Define a new derived property.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
createDerivedPropertyDefinitionRequestThe definition of the new derived property.
Returns
ApiResponse of PropertyDefinition

Implemented in Lusid.Sdk.Api.PropertyDefinitionsApi.

◆ CreatePropertyDefinition()

PropertyDefinition Lusid.Sdk.Api.IPropertyDefinitionsApiSync.CreatePropertyDefinition ( CreatePropertyDefinitionRequest  createPropertyDefinitionRequest)

Create property definition

Define a new property.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
createPropertyDefinitionRequestThe definition of the new property.
Returns
PropertyDefinition

Implemented in Lusid.Sdk.Api.PropertyDefinitionsApi.

◆ CreatePropertyDefinitionWithHttpInfo()

ApiResponse<PropertyDefinition> Lusid.Sdk.Api.IPropertyDefinitionsApiSync.CreatePropertyDefinitionWithHttpInfo ( CreatePropertyDefinitionRequest  createPropertyDefinitionRequest)

Create property definition

Define a new property.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
createPropertyDefinitionRequestThe definition of the new property.
Returns
ApiResponse of PropertyDefinition

Implemented in Lusid.Sdk.Api.PropertyDefinitionsApi.

◆ DeletePropertyDefinition()

DeletedEntityResponse Lusid.Sdk.Api.IPropertyDefinitionsApiSync.DeletePropertyDefinition ( string  domain,
string  scope,
string  code 
)

Delete property definition

Delete the definition of the specified property.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
domainThe domain of the property to be deleted.
scopeThe scope of the property to be deleted.
codeThe code of the property to be deleted. Together with the domain and scope this uniquely identifies the property.
Returns
DeletedEntityResponse

Implemented in Lusid.Sdk.Api.PropertyDefinitionsApi.

◆ DeletePropertyDefinitionWithHttpInfo()

ApiResponse<DeletedEntityResponse> Lusid.Sdk.Api.IPropertyDefinitionsApiSync.DeletePropertyDefinitionWithHttpInfo ( string  domain,
string  scope,
string  code 
)

Delete property definition

Delete the definition of the specified property.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
domainThe domain of the property to be deleted.
scopeThe scope of the property to be deleted.
codeThe code of the property to be deleted. Together with the domain and scope this uniquely identifies the property.
Returns
ApiResponse of DeletedEntityResponse

Implemented in Lusid.Sdk.Api.PropertyDefinitionsApi.

◆ GetMultiplePropertyDefinitions()

ResourceListOfPropertyDefinition Lusid.Sdk.Api.IPropertyDefinitionsApiSync.GetMultiplePropertyDefinitions ( List< string >  propertyKeys,
DateTimeOffset?  asAt = default(DateTimeOffset?),
string  filter = default(string) 
)

Get multiple property definitions

Retrieve the definition of one or more specified properties.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
propertyKeysOne or more property keys which identify each property that a definition should be retrieved for. The format for each property key is {domain}/{scope}/{code}, e.g. &#39;Portfolio/Manager/Id&#39;.
asAtThe asAt datetime at which to retrieve the property definitions. Defaults to return the latest version of each definition if not specified. (optional)
filterExpression to filter the result set. For example, to filter on the Lifetime, use &quot;lifeTime eq &#39;Perpetual&#39;&quot; Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid. (optional)
Returns
ResourceListOfPropertyDefinition

Implemented in Lusid.Sdk.Api.PropertyDefinitionsApi.

◆ GetMultiplePropertyDefinitionsWithHttpInfo()

ApiResponse<ResourceListOfPropertyDefinition> Lusid.Sdk.Api.IPropertyDefinitionsApiSync.GetMultiplePropertyDefinitionsWithHttpInfo ( List< string >  propertyKeys,
DateTimeOffset?  asAt = default(DateTimeOffset?),
string  filter = default(string) 
)

Get multiple property definitions

Retrieve the definition of one or more specified properties.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
propertyKeysOne or more property keys which identify each property that a definition should be retrieved for. The format for each property key is {domain}/{scope}/{code}, e.g. &#39;Portfolio/Manager/Id&#39;.
asAtThe asAt datetime at which to retrieve the property definitions. Defaults to return the latest version of each definition if not specified. (optional)
filterExpression to filter the result set. For example, to filter on the Lifetime, use &quot;lifeTime eq &#39;Perpetual&#39;&quot; Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid. (optional)
Returns
ApiResponse of ResourceListOfPropertyDefinition

Implemented in Lusid.Sdk.Api.PropertyDefinitionsApi.

◆ GetPropertyDefinition()

PropertyDefinition Lusid.Sdk.Api.IPropertyDefinitionsApiSync.GetPropertyDefinition ( string  domain,
string  scope,
string  code,
DateTimeOffset?  asAt = default(DateTimeOffset?) 
)

Get property definition

Retrieve the definition of a specified property.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
domainThe domain of the specified property.
scopeThe scope of the specified property.
codeThe code of the specified property. Together with the domain and scope this uniquely identifies the property.
asAtThe asAt datetime at which to retrieve the property definition. Defaults to return the latest version of the definition if not specified. (optional)
Returns
PropertyDefinition

Implemented in Lusid.Sdk.Api.PropertyDefinitionsApi.

◆ GetPropertyDefinitionWithHttpInfo()

ApiResponse<PropertyDefinition> Lusid.Sdk.Api.IPropertyDefinitionsApiSync.GetPropertyDefinitionWithHttpInfo ( string  domain,
string  scope,
string  code,
DateTimeOffset?  asAt = default(DateTimeOffset?) 
)

Get property definition

Retrieve the definition of a specified property.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
domainThe domain of the specified property.
scopeThe scope of the specified property.
codeThe code of the specified property. Together with the domain and scope this uniquely identifies the property.
asAtThe asAt datetime at which to retrieve the property definition. Defaults to return the latest version of the definition if not specified. (optional)
Returns
ApiResponse of PropertyDefinition

Implemented in Lusid.Sdk.Api.PropertyDefinitionsApi.

◆ UpdatePropertyDefinition()

PropertyDefinition Lusid.Sdk.Api.IPropertyDefinitionsApiSync.UpdatePropertyDefinition ( string  domain,
string  scope,
string  code,
UpdatePropertyDefinitionRequest  updatePropertyDefinitionRequest 
)

Update property definition

Update the definition of a specified existing property. Not all elements within a property definition are modifiable due to the potential implications for values already stored against the property.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
domainThe domain of the property being updated.
scopeThe scope of the property being updated.
codeThe code of the property being updated. Together with the domain and scope this uniquely identifies the property.
updatePropertyDefinitionRequestThe updated definition of the property.
Returns
PropertyDefinition

Implemented in Lusid.Sdk.Api.PropertyDefinitionsApi.

◆ UpdatePropertyDefinitionWithHttpInfo()

ApiResponse<PropertyDefinition> Lusid.Sdk.Api.IPropertyDefinitionsApiSync.UpdatePropertyDefinitionWithHttpInfo ( string  domain,
string  scope,
string  code,
UpdatePropertyDefinitionRequest  updatePropertyDefinitionRequest 
)

Update property definition

Update the definition of a specified existing property. Not all elements within a property definition are modifiable due to the potential implications for values already stored against the property.

Exceptions
Lusid.Sdk.Client.ApiExceptionThrown when fails to make API call
Parameters
domainThe domain of the property being updated.
scopeThe scope of the property being updated.
codeThe code of the property being updated. Together with the domain and scope this uniquely identifies the property.
updatePropertyDefinitionRequestThe updated definition of the property.
Returns
ApiResponse of PropertyDefinition

Implemented in Lusid.Sdk.Api.PropertyDefinitionsApi.


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