@finbourne/lusid-sdk-angular18
Version:
An Angular (18) SDK for secure access to the LUSID® by FINBOURNE web API
144 lines (143 loc) • 9.22 kB
TypeScript
import { HttpClient, HttpHeaders, HttpResponse, HttpEvent, HttpParameterCodec, HttpContext } from '@angular/common/http';
import { Observable } from 'rxjs';
import { DeletedEntityResponse } from '../model/deletedEntityResponse';
import { PagedResourceListOfPlacement } from '../model/pagedResourceListOfPlacement';
import { Placement } from '../model/placement';
import { PlacementSetRequest } from '../model/placementSetRequest';
import { ResourceListOfPlacement } from '../model/resourceListOfPlacement';
import { Configuration } from '../configuration';
import * as i0 from "@angular/core";
export interface DeletePlacementRequestParams {
/** The placement scope. */
scope: string;
/** The placement\'s code. This, together with the scope uniquely identifies the placement to delete. */
code: string;
}
export interface GetPlacementRequestParams {
/** The scope to which the placement belongs. */
scope: string;
/** The placement\'s unique identifier. */
code: string;
/** The asAt datetime at which to retrieve the placement. Defaults to return the latest version of the placement if not specified. */
asAt?: string;
/** A list of property keys from the \"Placement\" domain to decorate onto the placement. If none are given, all applied properties are returned. These take the format {domain}/{scope}/{code} e.g. \"Placement/system/Name\". Property keys from the instrument domain can also be decorated onto the placement, e.g. \"Instrument/default/Isin\". These are only decorated if requested. */
propertyKeys?: Array<string>;
}
export interface ListPlacementsRequestParams {
/** The asAt datetime at which to retrieve the placement. Defaults to return the latest version of the placement if not specified. */
asAt?: string;
/** The pagination token to use to continue listing placements from a previous call to list placements. This value is returned from the previous call. If a pagination token is provided the sortBy, filter, effectiveAt, and asAt fields must not have changed since the original request. */
page?: string;
/** A list of field names or properties to sort by, each suffixed by \" ASC\" or \" DESC\". */
sortBy?: Array<string>;
/** When paginating, limit the number of returned results to this many. */
limit?: number;
/** Expression to filter the result set. Read more about filtering results from LUSID here: https://support.lusid.com/filtering-results-from-lusid. */
filter?: string;
/** A list of property keys from the \"Placement\" domain to decorate onto each placement. These take the format {domain}/{scope}/{code} e.g. \"Placement/system/Name\". All properties, except derived properties, are returned by default, without specifying here. */
propertyKeys?: Array<string>;
}
export interface UpsertPlacementsRequestParams {
/** The collection of placement requests. */
placementSetRequest?: PlacementSetRequest;
}
export declare class PlacementsService {
protected httpClient: HttpClient;
protected basePath: string;
defaultHeaders: HttpHeaders;
configuration: Configuration;
encoder: HttpParameterCodec;
constructor(httpClient: HttpClient, basePath: string | string[], configuration: Configuration);
private addToHttpParams;
private addToHttpParamsRecursive;
/**
* [EARLY ACCESS] DeletePlacement: Delete placement
* Delete an placement. Deletion will be valid from the placement\'s creation datetime. This means that the placement will no longer exist at any effective datetime from the asAt datetime of deletion.
* @param requestParameters
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
* @param reportProgress flag to report request and response progress.
*/
deletePlacement(requestParameters?: DeletePlacementRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json';
context?: HttpContext;
transferCache?: boolean;
}): Observable<DeletedEntityResponse>;
deletePlacement(requestParameters?: DeletePlacementRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json';
context?: HttpContext;
transferCache?: boolean;
}): Observable<HttpResponse<DeletedEntityResponse>>;
deletePlacement(requestParameters?: DeletePlacementRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json';
context?: HttpContext;
transferCache?: boolean;
}): Observable<HttpEvent<DeletedEntityResponse>>;
/**
* [EARLY ACCESS] GetPlacement: Get Placement
* Fetch a Placement that matches the specified identifier
* @param requestParameters
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
* @param reportProgress flag to report request and response progress.
*/
getPlacement(requestParameters?: GetPlacementRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json';
context?: HttpContext;
transferCache?: boolean;
}): Observable<Placement>;
getPlacement(requestParameters?: GetPlacementRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json';
context?: HttpContext;
transferCache?: boolean;
}): Observable<HttpResponse<Placement>>;
getPlacement(requestParameters?: GetPlacementRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json';
context?: HttpContext;
transferCache?: boolean;
}): Observable<HttpEvent<Placement>>;
/**
* [EARLY ACCESS] ListPlacements: List Placements
* Fetch the last pre-AsAt date version of each placement in scope (does not fetch the entire history).
* @param requestParameters
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
* @param reportProgress flag to report request and response progress.
*/
listPlacements(requestParameters?: ListPlacementsRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json';
context?: HttpContext;
transferCache?: boolean;
}): Observable<PagedResourceListOfPlacement>;
listPlacements(requestParameters?: ListPlacementsRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json';
context?: HttpContext;
transferCache?: boolean;
}): Observable<HttpResponse<PagedResourceListOfPlacement>>;
listPlacements(requestParameters?: ListPlacementsRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json';
context?: HttpContext;
transferCache?: boolean;
}): Observable<HttpEvent<PagedResourceListOfPlacement>>;
/**
* [EARLY ACCESS] UpsertPlacements: Upsert Placement
* Upsert; update existing placements with given ids, or create new placements otherwise.
* @param requestParameters
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
* @param reportProgress flag to report request and response progress.
*/
upsertPlacements(requestParameters?: UpsertPlacementsRequestParams, observe?: 'body', reportProgress?: boolean, options?: {
httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json';
context?: HttpContext;
transferCache?: boolean;
}): Observable<ResourceListOfPlacement>;
upsertPlacements(requestParameters?: UpsertPlacementsRequestParams, observe?: 'response', reportProgress?: boolean, options?: {
httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json';
context?: HttpContext;
transferCache?: boolean;
}): Observable<HttpResponse<ResourceListOfPlacement>>;
upsertPlacements(requestParameters?: UpsertPlacementsRequestParams, observe?: 'events', reportProgress?: boolean, options?: {
httpHeaderAccept?: 'text/plain' | 'application/json' | 'text/json';
context?: HttpContext;
transferCache?: boolean;
}): Observable<HttpEvent<ResourceListOfPlacement>>;
static ɵfac: i0.ɵɵFactoryDeclaration<PlacementsService, [null, { optional: true; }, { optional: true; }]>;
static ɵprov: i0.ɵɵInjectableDeclaration<PlacementsService>;
}