TianoCore EDK2 master
Loading...
Searching...
No Matches
EdkIIRedfishHttpProtocol.h File Reference

Go to the source code of this file.

Data Structures

struct  _EDKII_REDFISH_HTTP_PROTOCOL
 

Macros

#define EDKII_REDFISH_HTTP_PROTOCOL_REVISION   0x00001000
 

Typedefs

typedef struct _EDKII_REDFISH_HTTP_PROTOCOL EDKII_REDFISH_HTTP_PROTOCOL
 
typedef REDFISH_SERVICE(EFIAPI * REDFISH_HTTP_CREATE_SERVICE) (IN EDKII_REDFISH_HTTP_PROTOCOL *This, IN REDFISH_CONFIG_SERVICE_INFORMATION *RedfishConfigServiceInfo)
 
typedef EFI_STATUS(EFIAPI * REDFISH_HTTP_FREE_SERVICE) (IN EDKII_REDFISH_HTTP_PROTOCOL *This, IN REDFISH_SERVICE RedfishService)
 
typedef EDKII_JSON_VALUE(EFIAPI * REDFISH_HTTP_JSON_IN_PAYLOAD) (IN EDKII_REDFISH_HTTP_PROTOCOL *This, IN REDFISH_PAYLOAD RedfishPayload)
 
typedef EFI_STATUS(EFIAPI * REDFISH_HTTP_FREE_REQUEST) (IN EDKII_REDFISH_HTTP_PROTOCOL *This, IN REDFISH_REQUEST *Request)
 
typedef EFI_STATUS(EFIAPI * REDFISH_HTTP_FREE_RESPONSE) (IN EDKII_REDFISH_HTTP_PROTOCOL *This, IN REDFISH_RESPONSE *Response)
 
typedef EFI_STATUS(EFIAPI * REDFISH_HTTP_EXPIRE_RESPONSE) (IN EDKII_REDFISH_HTTP_PROTOCOL *This, IN EFI_STRING Uri)
 
typedef EFI_STATUS(EFIAPI * REDFISH_HTTP_GET_RESOURCE) (IN EDKII_REDFISH_HTTP_PROTOCOL *This, IN REDFISH_SERVICE Service, IN EFI_STRING Uri, IN REDFISH_REQUEST *Request OPTIONAL, OUT REDFISH_RESPONSE *Response, IN BOOLEAN UseCache)
 
typedef EFI_STATUS(EFIAPI * REDFISH_HTTP_PATCH_RESOURCE) (IN EDKII_REDFISH_HTTP_PROTOCOL *This, IN REDFISH_SERVICE Service, IN EFI_STRING Uri, IN CHAR8 *Content, IN UINTN ContentSize OPTIONAL, IN CHAR8 *ContentType OPTIONAL, OUT REDFISH_RESPONSE *Response)
 
typedef EFI_STATUS(EFIAPI * REDFISH_HTTP_PUT_RESOURCE) (IN EDKII_REDFISH_HTTP_PROTOCOL *This, IN REDFISH_SERVICE Service, IN EFI_STRING Uri, IN CHAR8 *Content, IN UINTN ContentSize OPTIONAL, IN CHAR8 *ContentType OPTIONAL, OUT REDFISH_RESPONSE *Response)
 
typedef EFI_STATUS(EFIAPI * REDFISH_HTTP_POST_RESOURCE) (IN EDKII_REDFISH_HTTP_PROTOCOL *This, IN REDFISH_SERVICE Service, IN EFI_STRING Uri, IN CHAR8 *Content, IN UINTN ContentSize OPTIONAL, IN CHAR8 *ContentType OPTIONAL, OUT REDFISH_RESPONSE *Response)
 
typedef EFI_STATUS(EFIAPI * REDFISH_HTTP_DELETE_RESOURCE) (IN EDKII_REDFISH_HTTP_PROTOCOL *This, IN REDFISH_SERVICE Service, IN EFI_STRING Uri, IN CHAR8 *Content OPTIONAL, IN UINTN ContentSize OPTIONAL, IN CHAR8 *ContentType OPTIONAL, OUT REDFISH_RESPONSE *Response)
 

Variables

EFI_GUID gEdkIIRedfishHttpProtocolGuid
 

Detailed Description

This file defines the EDKII_REDFISH_HTTP_PROTOCOL interface.

Copyright (c) 2023-2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved.

SPDX-License-Identifier: BSD-2-Clause-Patent

Definition in file EdkIIRedfishHttpProtocol.h.

Macro Definition Documentation

◆ EDKII_REDFISH_HTTP_PROTOCOL_REVISION

#define EDKII_REDFISH_HTTP_PROTOCOL_REVISION   0x00001000

Definition at line 304 of file EdkIIRedfishHttpProtocol.h.

Typedef Documentation

◆ EDKII_REDFISH_HTTP_PROTOCOL

◆ REDFISH_HTTP_CREATE_SERVICE

typedef REDFISH_SERVICE(EFIAPI * REDFISH_HTTP_CREATE_SERVICE) (IN EDKII_REDFISH_HTTP_PROTOCOL *This, IN REDFISH_CONFIG_SERVICE_INFORMATION *RedfishConfigServiceInfo)

This function create Redfish service. It's caller's responsibility to free returned Redfish service by calling FreeService ().

Parameters
[in]ThisPointer to EDKII_REDFISH_HTTP_PROTOCOL instance.
[in]RedfishConfigServiceInfoRedfish config service information.
Return values
REDFISH_SERVICERedfish service is created.
NULLErrors occur.

Definition at line 31 of file EdkIIRedfishHttpProtocol.h.

◆ REDFISH_HTTP_DELETE_RESOURCE

typedef EFI_STATUS(EFIAPI * REDFISH_HTTP_DELETE_RESOURCE) (IN EDKII_REDFISH_HTTP_PROTOCOL *This, IN REDFISH_SERVICE Service, IN EFI_STRING Uri, IN CHAR8 *Content OPTIONAL, IN UINTN ContentSize OPTIONAL, IN CHAR8 *ContentType OPTIONAL, OUT REDFISH_RESPONSE *Response)

Perform HTTP DELETE to delete redfish resource on given resource URI. It's caller's responsibility to free Response by calling FreeResponse ().

Parameters
[in]ThisPointer to EDKII_REDFISH_HTTP_PROTOCOL instance.
[in]ServiceRedfish service instance to perform HTTP DELETE.
[in]UriTarget resource URI.
[in]ContentJSON represented properties to be deleted. This is optional.
[in]ContentSizeSize of the Content to be send to Redfish service. This is optional. When ContentSize is 0, ContentSize is the size of Content if Content is not NULL.
[in]ContentTypeType of the Content to be send to Redfish service. This is optional. When Content is not NULL and ContentType is NULL, content type HTTP_CONTENT_TYPE_APP_JSON will be used.
[out]ResponseHTTP response from redfish service.
Return values
EFI_SUCCESSResource is returned successfully.
OthersErrors occur.

Definition at line 275 of file EdkIIRedfishHttpProtocol.h.

◆ REDFISH_HTTP_EXPIRE_RESPONSE

typedef EFI_STATUS(EFIAPI * REDFISH_HTTP_EXPIRE_RESPONSE) (IN EDKII_REDFISH_HTTP_PROTOCOL *This, IN EFI_STRING Uri)

This function expire the cached response of given URI.

Parameters
[in]ThisPointer to EDKII_REDFISH_HTTP_PROTOCOL instance.
[in]UriTarget response of URI.
Return values
EFI_SUCCESSTarget response is expired successfully.
OthersErrors occur.

Definition at line 121 of file EdkIIRedfishHttpProtocol.h.

◆ REDFISH_HTTP_FREE_REQUEST

typedef EFI_STATUS(EFIAPI * REDFISH_HTTP_FREE_REQUEST) (IN EDKII_REDFISH_HTTP_PROTOCOL *This, IN REDFISH_REQUEST *Request)

This function free resources in Request. Request is no longer available after this function returns successfully.

Parameters
[in]ThisPointer to EDKII_REDFISH_HTTP_PROTOCOL instance.
[in]RequestHTTP request to be released.
Return values
EFI_SUCCESSResource is released successfully.
OthersErrors occur.

Definition at line 86 of file EdkIIRedfishHttpProtocol.h.

◆ REDFISH_HTTP_FREE_RESPONSE

typedef EFI_STATUS(EFIAPI * REDFISH_HTTP_FREE_RESPONSE) (IN EDKII_REDFISH_HTTP_PROTOCOL *This, IN REDFISH_RESPONSE *Response)

This function free resources in Response. Response is no longer available after this function returns successfully.

Parameters
[in]ThisPointer to EDKII_REDFISH_HTTP_PROTOCOL instance.
[in]ResponseHTTP response to be released.
Return values
EFI_SUCCESSResource is released successfully.
OthersErrors occur.

Definition at line 104 of file EdkIIRedfishHttpProtocol.h.

◆ REDFISH_HTTP_FREE_SERVICE

typedef EFI_STATUS(EFIAPI * REDFISH_HTTP_FREE_SERVICE) (IN EDKII_REDFISH_HTTP_PROTOCOL *This, IN REDFISH_SERVICE RedfishService)

This function free resources in Redfish service. RedfishService is no longer available after this function returns successfully.

Parameters
[in]ThisPointer to EDKII_REDFISH_HTTP_PROTOCOL instance.
[in]RedfishServicePointer to Redfish service to be released.
Return values
EFI_SUCCESSResource is released successfully.
OthersErrors occur.

Definition at line 49 of file EdkIIRedfishHttpProtocol.h.

◆ REDFISH_HTTP_GET_RESOURCE

typedef EFI_STATUS(EFIAPI * REDFISH_HTTP_GET_RESOURCE) (IN EDKII_REDFISH_HTTP_PROTOCOL *This, IN REDFISH_SERVICE Service, IN EFI_STRING Uri, IN REDFISH_REQUEST *Request OPTIONAL, OUT REDFISH_RESPONSE *Response, IN BOOLEAN UseCache)

Perform HTTP GET to Get redfish resource from given resource URI with cache mechanism supported. It's caller's responsibility to free Response by calling FreeResponse ().

Parameters
[in]ThisPointer to EDKII_REDFISH_HTTP_PROTOCOL instance.
[in]ServiceRedfish service instance to perform HTTP GET.
[in]UriTarget resource URI.
[in]RequestAdditional request context. This is optional.
[out]ResponseHTTP response from redfish service.
[in]UseCacheIf it is TRUE, this function will search for cache first. If it is FALSE, this function will query Redfish URI directly.
Return values
EFI_SUCCESSResource is returned successfully.
OthersErrors occur.

Definition at line 146 of file EdkIIRedfishHttpProtocol.h.

◆ REDFISH_HTTP_JSON_IN_PAYLOAD

typedef EDKII_JSON_VALUE(EFIAPI * REDFISH_HTTP_JSON_IN_PAYLOAD) (IN EDKII_REDFISH_HTTP_PROTOCOL *This, IN REDFISH_PAYLOAD RedfishPayload)

This function returns JSON value in given RedfishPayload. Returned JSON value is a reference to the JSON value in RedfishPayload. Any modification to returned JSON value will change JSON value in RedfishPayload.

Parameters
[in]ThisPointer to EDKII_REDFISH_HTTP_PROTOCOL instance.
[in]RedfishPayloadPointer to Redfish payload.
Return values
EDKII_JSON_VALUEJSON value is returned.
NULLErrors occur.

Definition at line 68 of file EdkIIRedfishHttpProtocol.h.

◆ REDFISH_HTTP_PATCH_RESOURCE

typedef EFI_STATUS(EFIAPI * REDFISH_HTTP_PATCH_RESOURCE) (IN EDKII_REDFISH_HTTP_PROTOCOL *This, IN REDFISH_SERVICE Service, IN EFI_STRING Uri, IN CHAR8 *Content, IN UINTN ContentSize OPTIONAL, IN CHAR8 *ContentType OPTIONAL, OUT REDFISH_RESPONSE *Response)

Perform HTTP PATCH to send redfish resource to given resource URI. It's caller's responsibility to free Response by calling FreeResponse ().

Parameters
[in]ThisPointer to EDKII_REDFISH_HTTP_PROTOCOL instance.
[in]ServiceRedfish service instance to perform HTTP PATCH.
[in]UriTarget resource URI.
[in]ContentData to patch.
[in]ContentSizeSize of the Content to be send to Redfish service. This is optional. When ContentSize is 0, ContentSize is the size of Content.
[in]ContentTypeType of the Content to be send to Redfish service. This is optional. When ContentType is NULL, content type HTTP_CONTENT_TYPE_APP_JSON will be used.
[out]ResponseHTTP response from redfish service.
Return values
EFI_SUCCESSResource is returned successfully.
OthersErrors occur.

Definition at line 177 of file EdkIIRedfishHttpProtocol.h.

◆ REDFISH_HTTP_POST_RESOURCE

typedef EFI_STATUS(EFIAPI * REDFISH_HTTP_POST_RESOURCE) (IN EDKII_REDFISH_HTTP_PROTOCOL *This, IN REDFISH_SERVICE Service, IN EFI_STRING Uri, IN CHAR8 *Content, IN UINTN ContentSize OPTIONAL, IN CHAR8 *ContentType OPTIONAL, OUT REDFISH_RESPONSE *Response)

Perform HTTP POST to send redfish resource to given resource URI. It's caller's responsibility to free Response by calling FreeResponse ().

Parameters
[in]ThisPointer to EDKII_REDFISH_HTTP_PROTOCOL instance.
[in]ServiceRedfish service instance to perform HTTP POST.
[in]UriTarget resource URI.
[in]ContentData to post.
[in]ContentSizeSize of the Content to be send to Redfish service. This is optional. When ContentSize is 0, ContentSize is the size of Content.
[in]ContentTypeType of the Content to be send to Redfish service. This is optional. When ContentType is NULL, content type HTTP_CONTENT_TYPE_APP_JSON will be used.
[out]ResponseHTTP response from redfish service.
Return values
EFI_SUCCESSResource is returned successfully.
OthersErrors occur.

Definition at line 241 of file EdkIIRedfishHttpProtocol.h.

◆ REDFISH_HTTP_PUT_RESOURCE

typedef EFI_STATUS(EFIAPI * REDFISH_HTTP_PUT_RESOURCE) (IN EDKII_REDFISH_HTTP_PROTOCOL *This, IN REDFISH_SERVICE Service, IN EFI_STRING Uri, IN CHAR8 *Content, IN UINTN ContentSize OPTIONAL, IN CHAR8 *ContentType OPTIONAL, OUT REDFISH_RESPONSE *Response)

Perform HTTP PUT to send redfish resource to given resource URI. It's caller's responsibility to free Response by calling FreeResponse ().

Parameters
[in]ThisPointer to EDKII_REDFISH_HTTP_PROTOCOL instance.
[in]ServiceRedfish service instance to perform HTTP PUT.
[in]UriTarget resource URI.
[in]ContentData to put.
[in]ContentSizeSize of the Content to be send to Redfish service. This is optional. When ContentSize is 0, ContentSize is the size of Content.
[in]ContentTypeType of the Content to be send to Redfish service. This is optional. When ContentType is NULL, content type HTTP_CONTENT_TYPE_APP_JSON will be used.
[out]ResponseHTTP response from redfish service.
Return values
EFI_SUCCESSResource is returned successfully.
OthersErrors occur.

Definition at line 209 of file EdkIIRedfishHttpProtocol.h.