EMS.Services.TEMSInternalAPI.ModuleResourcePut
| [–] Properties | |
|---|---|
| Type: function | |
| Visibility: public | |
| Source: EMS.Services.pas EMS.Services.hpp
| |
| Unit: EMS.Services | |
| Parent: TEMSInternalAPI | |
Delphi
function ModuleResourcePut(const AModuleName, AResourceName: string; const ASegments: TEMSResourceRequestSegments; const AQueryParams: TEMSResourceRequestQueryParams;
const ARequestContent: IEMSResourceRequestContent): IEMSResourceResponseContent;
C++
_di_IEMSResourceResponseContent __fastcall ModuleResourcePut(const System::UnicodeString AModuleName, const System::UnicodeString AResourceName, const TEMSResourceRequestSegments ASegments, const TEMSResourceRequestQueryParams AQueryParams, const _di_IEMSResourceRequestContent ARequestContent);
Description
Executes a PUT resource request to store or update the information for the particular resource of the EMS Edge module.
ModuleResourcePut receives the following input parameters:
AModuleName: the RAD Server EdgeModules Resource name of the resource.AResourceName: the resource name of theAModuleNameto store the data to.ASegments: array of URL segments of the EMS Resource endpoint to execute the request.ASegmentsvalue may benull.AQueryParams: query parameters used to execute a filtered resource request.AQueryParamsvalue may benull.ARequestContent: resource request content needed to execute the PUT request to the resource.
ModuleResourcePut returns an IEMSResourceResponseContent with the response from the EMS Server.
See Also
- EMS.Services.TEMSInternalAPI.TQueryParams
- EMS.Services.TEMSResourceRequestSegments
- EMS.Services.IEMSResourceRequest.Put
- EMS.Services.IEMSResourceResponseContent
- EMS.Services.TEMSInternalAPI.ModuleResourceDelete
- EMS.Services.TEMSInternalAPI.ModuleResourceGet
- EMS.Services.TEMSInternalAPI.ModuleResourcePatch
- EMS.Services.TEMSInternalAPI.ModuleResourcePost
- RAD Server EdgeModules Resource