George Keishing | e7e9171 | 2021-09-03 11:28:44 -0500 | [diff] [blame] | 1 | #!/usr/bin/env python3 |
George Keishing | e62d8b0 | 2018-11-29 12:01:56 -0600 | [diff] [blame] | 2 | |
| 3 | r""" |
George Keishing | 97c9394 | 2019-03-04 12:45:07 -0600 | [diff] [blame] | 4 | See class prolog below for details. |
George Keishing | e62d8b0 | 2018-11-29 12:01:56 -0600 | [diff] [blame] | 5 | """ |
| 6 | |
George Keishing | e635ddc | 2022-12-08 07:38:02 -0600 | [diff] [blame] | 7 | import json |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 8 | import re |
| 9 | import sys |
George Keishing | 36a1075 | 2022-02-24 04:14:17 -0600 | [diff] [blame] | 10 | from json.decoder import JSONDecodeError |
George Keishing | e62d8b0 | 2018-11-29 12:01:56 -0600 | [diff] [blame] | 11 | |
Michael Walsh | 5cc8919 | 2019-03-12 16:43:38 -0500 | [diff] [blame] | 12 | import func_args as fa |
Michael Walsh | ce7c4b5 | 2019-03-20 17:33:15 -0500 | [diff] [blame] | 13 | import gen_print as gp |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 14 | from redfish.rest.v1 import InvalidCredentialsError |
| 15 | from redfish_plus import redfish_plus |
| 16 | from robot.libraries.BuiltIn import BuiltIn |
George Keishing | e62d8b0 | 2018-11-29 12:01:56 -0600 | [diff] [blame] | 17 | |
Tony Lee | 05aa70b | 2021-01-28 19:18:27 +0800 | [diff] [blame] | 18 | MTLS_ENABLED = BuiltIn().get_variable_value("${MTLS_ENABLED}") |
| 19 | |
| 20 | |
George Keishing | 97c9394 | 2019-03-04 12:45:07 -0600 | [diff] [blame] | 21 | class bmc_redfish(redfish_plus): |
George Keishing | e62d8b0 | 2018-11-29 12:01:56 -0600 | [diff] [blame] | 22 | r""" |
Michael Walsh | 5cc8919 | 2019-03-12 16:43:38 -0500 | [diff] [blame] | 23 | bmc_redfish is a child class of redfish_plus that is designed to provide |
George Keishing | 97c9394 | 2019-03-04 12:45:07 -0600 | [diff] [blame] | 24 | benefits specifically for using redfish to communicate with an OpenBMC. |
| 25 | |
| 26 | See the prologs of the methods below for details. |
George Keishing | e62d8b0 | 2018-11-29 12:01:56 -0600 | [diff] [blame] | 27 | """ |
George Keishing | e62d8b0 | 2018-11-29 12:01:56 -0600 | [diff] [blame] | 28 | |
Michael Walsh | ce7c4b5 | 2019-03-20 17:33:15 -0500 | [diff] [blame] | 29 | def __init__(self, *args, **kwargs): |
| 30 | r""" |
| 31 | Do BMC-related redfish initialization. |
| 32 | |
| 33 | Presently, older versions of BMC code may not support redfish |
| 34 | requests. This can lead to unsightly error text being printed out for |
| 35 | programs that may use lib/bmc_redfish_resource.robot even though they |
| 36 | don't necessarily intend to make redfish requests. |
| 37 | |
| 38 | This class method will make an attempt to tolerate this situation. At |
| 39 | some future point, when all BMCs can be expected to support redfish, |
| 40 | this class method may be considered for deletion. If it is deleted, |
| 41 | the self.__inited__ test code in the login() class method below should |
| 42 | likewise be deleted. |
| 43 | """ |
| 44 | self.__inited__ = False |
| 45 | try: |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 46 | if MTLS_ENABLED == "True": |
Tony Lee | 05aa70b | 2021-01-28 19:18:27 +0800 | [diff] [blame] | 47 | self.__inited__ = True |
| 48 | else: |
| 49 | super(bmc_redfish, self).__init__(*args, **kwargs) |
| 50 | self.__inited__ = True |
Michael Walsh | ce7c4b5 | 2019-03-20 17:33:15 -0500 | [diff] [blame] | 51 | except ValueError as get_exception: |
| 52 | except_type, except_value, except_traceback = sys.exc_info() |
| 53 | regex = r"The HTTP status code was not valid:[\r\n]+status:[ ]+502" |
| 54 | result = re.match(regex, str(except_value), flags=re.MULTILINE) |
| 55 | if not result: |
| 56 | gp.lprint_var(except_type) |
| 57 | gp.lprint_varx("except_value", str(except_value)) |
George Keishing | 6224635 | 2022-08-01 01:20:06 -0500 | [diff] [blame] | 58 | raise (get_exception) |
George Keishing | 7049fba | 2025-01-16 10:44:46 +0530 | [diff] [blame] | 59 | except AttributeError as e: |
| 60 | BuiltIn().log_to_console( |
| 61 | "AttributeError: Error response from server" |
| 62 | ) |
| 63 | except Exception as e: |
| 64 | error_response = type(e).__name__ + " from bmc_redfish class" |
| 65 | BuiltIn().log_to_console(error_response) |
| 66 | |
Michael Walsh | e58df1c | 2019-08-07 09:57:43 -0500 | [diff] [blame] | 67 | BuiltIn().set_global_variable("${REDFISH_SUPPORTED}", self.__inited__) |
George Keishing | b131ff3 | 2020-10-13 09:18:24 -0500 | [diff] [blame] | 68 | BuiltIn().set_global_variable("${REDFISH_REST_SUPPORTED}", True) |
Michael Walsh | ce7c4b5 | 2019-03-20 17:33:15 -0500 | [diff] [blame] | 69 | |
George Keishing | e62d8b0 | 2018-11-29 12:01:56 -0600 | [diff] [blame] | 70 | def login(self, *args, **kwargs): |
| 71 | r""" |
George Keishing | 97c9394 | 2019-03-04 12:45:07 -0600 | [diff] [blame] | 72 | Assign BMC default values for username, password and auth arguments |
| 73 | and call parent class login method. |
George Keishing | e62d8b0 | 2018-11-29 12:01:56 -0600 | [diff] [blame] | 74 | |
| 75 | Description of argument(s): |
Michael Walsh | 5cc8919 | 2019-03-12 16:43:38 -0500 | [diff] [blame] | 76 | args See parent class method prolog for details. |
| 77 | kwargs See parent class method prolog for details. |
George Keishing | e62d8b0 | 2018-11-29 12:01:56 -0600 | [diff] [blame] | 78 | """ |
George Keishing | 4c39401 | 2019-02-01 06:03:02 -0600 | [diff] [blame] | 79 | |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 80 | if MTLS_ENABLED == "True": |
Tony Lee | 05aa70b | 2021-01-28 19:18:27 +0800 | [diff] [blame] | 81 | return None |
Michael Walsh | ce7c4b5 | 2019-03-20 17:33:15 -0500 | [diff] [blame] | 82 | if not self.__inited__: |
Michael Walsh | 707ed0e | 2019-05-17 15:27:25 -0500 | [diff] [blame] | 83 | message = "bmc_redfish.__init__() was never successfully run. It " |
| 84 | message += "is likely that the target BMC firmware code level " |
| 85 | message += "does not support redfish.\n" |
Michael Walsh | ce7c4b5 | 2019-03-20 17:33:15 -0500 | [diff] [blame] | 86 | raise ValueError(message) |
George Keishing | 97c9394 | 2019-03-04 12:45:07 -0600 | [diff] [blame] | 87 | # Assign default values for username, password, auth where necessary. |
Michael Walsh | 5cc8919 | 2019-03-12 16:43:38 -0500 | [diff] [blame] | 88 | openbmc_username = BuiltIn().get_variable_value("${OPENBMC_USERNAME}") |
| 89 | openbmc_password = BuiltIn().get_variable_value("${OPENBMC_PASSWORD}") |
| 90 | username, args, kwargs = fa.pop_arg(openbmc_username, *args, **kwargs) |
| 91 | password, args, kwargs = fa.pop_arg(openbmc_password, *args, **kwargs) |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 92 | auth, args, kwargs = fa.pop_arg("session", *args, **kwargs) |
George Keishing | 4c39401 | 2019-02-01 06:03:02 -0600 | [diff] [blame] | 93 | |
George Keishing | 36a1075 | 2022-02-24 04:14:17 -0600 | [diff] [blame] | 94 | try: |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 95 | super(bmc_redfish, self).login( |
| 96 | username, password, auth, *args, **kwargs |
| 97 | ) |
George Keishing | 36a1075 | 2022-02-24 04:14:17 -0600 | [diff] [blame] | 98 | # Handle InvalidCredentialsError. |
| 99 | # (raise redfish.rest.v1.InvalidCredentialsError if not [200, 201, 202, 204]) |
| 100 | except InvalidCredentialsError: |
| 101 | except_type, except_value, except_traceback = sys.exc_info() |
| 102 | BuiltIn().log_to_console(str(except_type)) |
| 103 | BuiltIn().log_to_console(str(except_value)) |
| 104 | e_message = "Re-try login due to exception and " |
| 105 | e_message += "it is likely error response from server side." |
| 106 | BuiltIn().log_to_console(e_message) |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 107 | super(bmc_redfish, self).login( |
| 108 | username, password, auth, *args, **kwargs |
| 109 | ) |
George Keishing | 36a1075 | 2022-02-24 04:14:17 -0600 | [diff] [blame] | 110 | # Handle JSONDecodeError and others. |
| 111 | except JSONDecodeError: |
| 112 | except_type, except_value, except_traceback = sys.exc_info() |
| 113 | BuiltIn().log_to_console(str(except_type)) |
| 114 | BuiltIn().log_to_console(str(except_value)) |
| 115 | e_message = "Re-try login due to JSONDecodeError exception and " |
| 116 | e_message += "it is likely error response from server side." |
| 117 | BuiltIn().log_to_console(e_message) |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 118 | super(bmc_redfish, self).login( |
| 119 | username, password, auth, *args, **kwargs |
| 120 | ) |
George Keishing | 36a1075 | 2022-02-24 04:14:17 -0600 | [diff] [blame] | 121 | except ValueError: |
| 122 | except_type, except_value, except_traceback = sys.exc_info() |
| 123 | BuiltIn().log_to_console(str(except_type)) |
| 124 | BuiltIn().log_to_console(str(except_value)) |
| 125 | e_message = "Unexpected exception." |
| 126 | BuiltIn().log_to_console(e_message) |
Michael Walsh | 5cc8919 | 2019-03-12 16:43:38 -0500 | [diff] [blame] | 127 | |
Tony Lee | 05aa70b | 2021-01-28 19:18:27 +0800 | [diff] [blame] | 128 | def logout(self): |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 129 | if MTLS_ENABLED == "True": |
Tony Lee | 05aa70b | 2021-01-28 19:18:27 +0800 | [diff] [blame] | 130 | return None |
| 131 | else: |
| 132 | super(bmc_redfish, self).logout() |
| 133 | |
Michael Walsh | 5cc8919 | 2019-03-12 16:43:38 -0500 | [diff] [blame] | 134 | def get_properties(self, *args, **kwargs): |
| 135 | r""" |
| 136 | Return dictionary of attributes for a given path. |
| 137 | |
| 138 | The difference between calling this function and calling get() |
| 139 | directly is that this function returns ONLY the dictionary portion of |
| 140 | the response object. |
| 141 | |
| 142 | Example robot code: |
| 143 | |
| 144 | ${properties}= Get Properties /redfish/v1/Systems/system/ |
Michael Walsh | 39c0051 | 2019-07-17 10:54:06 -0500 | [diff] [blame] | 145 | Rprint Vars properties |
Michael Walsh | 5cc8919 | 2019-03-12 16:43:38 -0500 | [diff] [blame] | 146 | |
| 147 | Output: |
| 148 | |
| 149 | properties: |
| 150 | [PowerState]: Off |
| 151 | [Processors]: |
| 152 | [@odata.id]: /redfish/v1/Systems/system/Processors |
| 153 | [SerialNumber]: 1234567 |
| 154 | ... |
| 155 | |
| 156 | Description of argument(s): |
| 157 | args See parent class get() prolog for details. |
| 158 | kwargs See parent class get() prolog for details. |
| 159 | """ |
| 160 | |
| 161 | resp = self.get(*args, **kwargs) |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 162 | return resp.dict if hasattr(resp, "dict") else {} |
Michael Walsh | 5cc8919 | 2019-03-12 16:43:38 -0500 | [diff] [blame] | 163 | |
| 164 | def get_attribute(self, path, attribute, default=None, *args, **kwargs): |
| 165 | r""" |
| 166 | Get and return the named attribute from the properties for a given |
| 167 | path. |
| 168 | |
| 169 | This method has the following advantages over calling get_properties |
| 170 | directly: |
| 171 | - The caller can specify a default value to be returned if the |
| 172 | attribute does not exist. |
| 173 | |
| 174 | Example robot code: |
| 175 | |
| 176 | ${attribute}= Get Attribute /redfish/v1/AccountService |
| 177 | ... MaxPasswordLength default=600 |
| 178 | Rprint Vars attribute |
| 179 | |
| 180 | Output: |
| 181 | |
| 182 | attribute: 31 |
| 183 | |
| 184 | Description of argument(s): |
| 185 | path The path (e.g. |
| 186 | "/redfish/v1/AccountService"). |
| 187 | attribute The name of the attribute to be retrieved |
| 188 | (e.g. "MaxPasswordLength"). |
| 189 | default The default value to be returned if the |
| 190 | attribute does not exist (e.g. ""). |
| 191 | args See parent class get() prolog for details. |
| 192 | kwargs See parent class get() prolog for details. |
| 193 | """ |
| 194 | |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 195 | return self.get_properties(path, *args, **kwargs).get( |
| 196 | attribute, default |
| 197 | ) |
Michael Walsh | 5cc8919 | 2019-03-12 16:43:38 -0500 | [diff] [blame] | 198 | |
| 199 | def get_session_info(self): |
| 200 | r""" |
| 201 | Get and return session info as a tuple consisting of session_key and |
| 202 | session_location. |
| 203 | """ |
| 204 | |
| 205 | return self.get_session_key(), self.get_session_location() |
Michael Walsh | 1a611fb | 2020-01-14 17:22:07 -0600 | [diff] [blame] | 206 | |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 207 | def enumerate( |
| 208 | self, resource_path, return_json=1, include_dead_resources=False |
| 209 | ): |
Michael Walsh | 1a611fb | 2020-01-14 17:22:07 -0600 | [diff] [blame] | 210 | r""" |
| 211 | Perform a GET enumerate request and return available resource paths. |
| 212 | |
| 213 | Description of argument(s): |
| 214 | resource_path URI resource absolute path (e.g. "/redfish/v1/SessionService/Sessions"). |
| 215 | return_json Indicates whether the result should be returned as a json string or as a |
| 216 | dictionary. |
| 217 | include_dead_resources Check and return a list of dead/broken URI resources. |
| 218 | """ |
| 219 | |
| 220 | gp.qprint_executing(style=gp.func_line_style_short) |
| 221 | # Set quiet variable to keep subordinate get() calls quiet. |
| 222 | quiet = 1 |
| 223 | |
| 224 | self.__result = {} |
| 225 | # Variable to hold the pending list of resources for which enumeration is yet to be obtained. |
| 226 | self.__pending_enumeration = set() |
| 227 | self.__pending_enumeration.add(resource_path) |
| 228 | |
| 229 | # Variable having resources for which enumeration is completed. |
| 230 | enumerated_resources = set() |
| 231 | dead_resources = {} |
| 232 | resources_to_be_enumerated = (resource_path,) |
| 233 | while resources_to_be_enumerated: |
| 234 | for resource in resources_to_be_enumerated: |
| 235 | # JsonSchemas, SessionService or URLs containing # are not required in enumeration. |
| 236 | # Example: '/redfish/v1/JsonSchemas/' and sub resources. |
| 237 | # '/redfish/v1/SessionService' |
ganesanb | 4d43028 | 2023-04-27 14:33:23 +0000 | [diff] [blame] | 238 | # '/redfish/v1/Managers/${MANAGER_ID}#/Oem' |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 239 | if ( |
| 240 | ("JsonSchemas" in resource) |
| 241 | or ("SessionService" in resource) |
| 242 | or ("#" in resource) |
| 243 | ): |
Michael Walsh | 1a611fb | 2020-01-14 17:22:07 -0600 | [diff] [blame] | 244 | continue |
| 245 | |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 246 | self._rest_response_ = self.get( |
| 247 | resource, valid_status_codes=[200, 404, 500] |
| 248 | ) |
Michael Walsh | 1a611fb | 2020-01-14 17:22:07 -0600 | [diff] [blame] | 249 | # Enumeration is done for available resources ignoring the ones for which response is not |
| 250 | # obtained. |
| 251 | if self._rest_response_.status != 200: |
| 252 | if include_dead_resources: |
| 253 | try: |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 254 | dead_resources[self._rest_response_.status].append( |
| 255 | resource |
| 256 | ) |
Michael Walsh | 1a611fb | 2020-01-14 17:22:07 -0600 | [diff] [blame] | 257 | except KeyError: |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 258 | dead_resources[self._rest_response_.status] = [ |
| 259 | resource |
| 260 | ] |
Michael Walsh | 1a611fb | 2020-01-14 17:22:07 -0600 | [diff] [blame] | 261 | continue |
| 262 | self.walk_nested_dict(self._rest_response_.dict, url=resource) |
| 263 | |
| 264 | enumerated_resources.update(set(resources_to_be_enumerated)) |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 265 | resources_to_be_enumerated = tuple( |
| 266 | self.__pending_enumeration - enumerated_resources |
| 267 | ) |
Michael Walsh | 1a611fb | 2020-01-14 17:22:07 -0600 | [diff] [blame] | 268 | |
| 269 | if return_json: |
| 270 | if include_dead_resources: |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 271 | return ( |
| 272 | json.dumps( |
| 273 | self.__result, |
| 274 | sort_keys=True, |
| 275 | indent=4, |
| 276 | separators=(",", ": "), |
| 277 | ), |
| 278 | dead_resources, |
| 279 | ) |
Michael Walsh | 1a611fb | 2020-01-14 17:22:07 -0600 | [diff] [blame] | 280 | else: |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 281 | return json.dumps( |
| 282 | self.__result, |
| 283 | sort_keys=True, |
| 284 | indent=4, |
| 285 | separators=(",", ": "), |
| 286 | ) |
Michael Walsh | 1a611fb | 2020-01-14 17:22:07 -0600 | [diff] [blame] | 287 | else: |
| 288 | if include_dead_resources: |
| 289 | return self.__result, dead_resources |
| 290 | else: |
| 291 | return self.__result |
| 292 | |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 293 | def walk_nested_dict(self, data, url=""): |
Michael Walsh | 1a611fb | 2020-01-14 17:22:07 -0600 | [diff] [blame] | 294 | r""" |
| 295 | Parse through the nested dictionary and get the resource id paths. |
| 296 | |
| 297 | Description of argument(s): |
| 298 | data Nested dictionary data from response message. |
| 299 | url Resource for which the response is obtained in data. |
| 300 | """ |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 301 | url = url.rstrip("/") |
Michael Walsh | 1a611fb | 2020-01-14 17:22:07 -0600 | [diff] [blame] | 302 | |
| 303 | for key, value in data.items(): |
Michael Walsh | 1a611fb | 2020-01-14 17:22:07 -0600 | [diff] [blame] | 304 | # Recursion if nested dictionary found. |
| 305 | if isinstance(value, dict): |
| 306 | self.walk_nested_dict(value) |
| 307 | else: |
| 308 | # Value contains a list of dictionaries having member data. |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 309 | if "Members" == key: |
Michael Walsh | 1a611fb | 2020-01-14 17:22:07 -0600 | [diff] [blame] | 310 | if isinstance(value, list): |
| 311 | for memberDict in value: |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 312 | self.__pending_enumeration.add( |
| 313 | memberDict["@odata.id"] |
| 314 | ) |
| 315 | if "@odata.id" == key: |
| 316 | value = value.rstrip("/") |
Michael Walsh | 1a611fb | 2020-01-14 17:22:07 -0600 | [diff] [blame] | 317 | # Data for the given url. |
| 318 | if value == url: |
| 319 | self.__result[url] = data |
| 320 | # Data still needs to be looked up, |
| 321 | else: |
| 322 | self.__pending_enumeration.add(value) |
George Keishing | 46191a3 | 2021-06-10 13:58:43 -0500 | [diff] [blame] | 323 | |
| 324 | def get_members_list(self, resource_path, filter=None): |
| 325 | r""" |
| 326 | Return members list in a given URL. |
| 327 | |
| 328 | Description of argument(s): |
| 329 | resource_path URI resource absolute path (e.g. "/redfish/v1/AccountService/Accounts"). |
| 330 | filter strings or regex |
| 331 | |
| 332 | /redfish/v1/AccountService/Accounts/ |
| 333 | { |
| 334 | "@odata.id": "/redfish/v1/AccountService/Accounts", |
| 335 | "@odata.type": "#ManagerAccountCollection.ManagerAccountCollection", |
| 336 | "Description": "BMC User Accounts", |
| 337 | "Members": [ |
| 338 | { |
| 339 | "@odata.id": "/redfish/v1/AccountService/Accounts/root" |
| 340 | }, |
| 341 | { |
| 342 | "@odata.id": "/redfish/v1/AccountService/Accounts/admin" |
| 343 | } |
| 344 | ], |
| 345 | "Members@odata.count": 2, |
| 346 | "Name": "Accounts Collection" |
| 347 | } |
| 348 | |
| 349 | Return list of members if no filter is applied as: |
| 350 | ['/redfish/v1/AccountService/Accounts/root', "/redfish/v1/AccountService/Accounts/admin"] |
| 351 | |
| 352 | Return list of members if filter (e.g "root") is applied as: |
| 353 | ['/redfish/v1/AccountService/Accounts/root'] |
| 354 | |
| 355 | |
| 356 | Calling from robot code: |
| 357 | ${resp}= Redfish.Get Members List /redfish/v1/AccountService/Accounts |
| 358 | ${resp}= Redfish.Get Members List /redfish/v1/AccountService/Accounts filter=root |
| 359 | """ |
| 360 | |
| 361 | member_list = [] |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 362 | self._rest_response_ = self.get( |
| 363 | resource_path, valid_status_codes=[200] |
| 364 | ) |
George Keishing | 46191a3 | 2021-06-10 13:58:43 -0500 | [diff] [blame] | 365 | |
| 366 | try: |
| 367 | for member in self._rest_response_.dict["Members"]: |
| 368 | member_list.append(member["@odata.id"]) |
| 369 | except KeyError: |
| 370 | # Non Members child objects at the top level, ignore. |
| 371 | pass |
| 372 | |
| 373 | # Filter elements in the list and return matched elements. |
| 374 | if filter is not None: |
Patrick Williams | 20f3871 | 2022-12-08 06:18:26 -0600 | [diff] [blame] | 375 | regex = ".*/" + filter + "[^/]*$" |
George Keishing | 46191a3 | 2021-06-10 13:58:43 -0500 | [diff] [blame] | 376 | return [x for x in member_list if re.match(regex, x)] |
| 377 | |
| 378 | return member_list |