Lines Matching full:resource
69 Perform a GET enumerate request and return available resource paths.
72 resource and returns the available resource paths.
75 and the URI resource absolute path as arguments. The function also accepts
79 The function returns the available resource paths as a list of strings.
86 url (str): URI resource absolute path e.g.
93 list: A list of available resource paths as strings.
113 for resource in resources_to_be_enumerated:
120 ("JsonSchemas" in resource)
121 or ("SessionService" in resource)
122 or ("PostCodes" in resource)
123 or ("Registries" in resource)
124 or ("#" in resource)
128 response = execute_redfish_cmd(parms + resource)
134 walk_nested_dict(response, url=resource)
151 Parse through the nested dictionary and extract resource ID paths.
153 This function traverses a nested dictionary and extracts resource ID paths.
155 dictionary containing resource information.
158 resource for which the response is obtained in the data dictionary.
160 The function returns a list of resource ID paths as strings.
163 data (dict): A nested dictionary containing resource
165 url (str, optional): The resource for which the response is obtained
170 list: A list of resource ID paths as strings.
205 which is expected to be a nested dictionary containing resource
215 data (dict): A nested dictionary containing resource information.