forked from Seagate/SystemsRedfishPy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.py
38 lines (34 loc) · 1.46 KB
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#
# Do NOT modify or remove this copyright and license
#
# Copyright (c) 2019 Seagate Technology LLC and/or its Affiliates, All Rights Reserved
#
# This software is subject to the terms of the MIT License. If a copy of the license was
# not distributed with this file, you can obtain one at https://opensource.org/licenses/MIT.
#
# ******************************************************************************************
#
# config.py - Redfish API global values
#
# ******************************************************************************************
#
################################################################################
# Internal
################################################################################
sessionConfig = '$config'
sessionIdVariable = '$sessionid'
httpStatusVariable = '$httpstatus'
################################################################################
# Redfish
################################################################################
defaultConfigFile = 'redfishAPI.cfg'
################################################################################
# Storage Services URIs
################################################################################
redfish = '/redfish/'
################################################################################
# Testing
################################################################################
reportFolder = 'reports'
sleepTimeAfterDelete = 2
testFolder = 'tests'