Warning: Using this property can lead to race conditions if you access another property subsequently along the refresh boundary. Please use get_frozen_credentials instead.
(self)
| 478 | |
| 479 | @property |
| 480 | def secret_key(self): |
| 481 | """Warning: Using this property can lead to race conditions if you |
| 482 | access another property subsequently along the refresh boundary. |
| 483 | Please use get_frozen_credentials instead. |
| 484 | """ |
| 485 | self._refresh() |
| 486 | return self._secret_key |
| 487 | |
| 488 | @secret_key.setter |
| 489 | def secret_key(self, value): |