Coverage for ocp_resources/node_network_configuration_enactment.py: 0%
16 statements
« prev ^ index » next coverage.py v7.6.10, created at 2025-01-30 10:48 +0200
« prev ^ index » next coverage.py v7.6.10, created at 2025-01-30 10:48 +0200
1from ocp_resources.resource import Resource
4class NodeNetworkConfigurationEnactment(Resource):
5 api_group = Resource.ApiGroup.NMSTATE_IO
7 class Conditions:
8 class Type:
9 FAILING = "Failing"
10 AVAILABLE = "Available"
11 PROGRESSING = "Progressing"
12 PENDING = "Pending"
13 ABORTED = "Aborted"
15 class Reason:
16 CONFIGURATION_PROGRESSING = "ConfigurationProgressing"
17 SUCCESSFULLY_CONFIGURED = "SuccessfullyConfigured"
18 FAILED_TO_CONFIGURE = "FailedToConfigure"
19 CONFIGURATION_ABORTED = "ConfigurationAborted"
20 MAX_UNAVAILABLE_LIMIT_REACHED = "MaxUnavailableLimitReached"