Source code for ocp_resources.node_network_configuration_enactment

from ocp_resources.resource import Resource


[docs]class NodeNetworkConfigurationEnactment(Resource): api_group = Resource.ApiGroup.NMSTATE_IO
[docs] class Conditions:
[docs] class Type: FAILING = "Failing" AVAILABLE = "Available" PROGRESSING = "Progressing" PENDING = "Pending" ABORTED = "Aborted"
[docs] class Reason: CONFIGURATION_PROGRESSING = "ConfigurationProgressing" SUCCESSFULLY_CONFIGURED = "SuccessfullyConfigured" FAILED_TO_CONFIGURE = "FailedToConfigure" CONFIGURATION_ABORTED = "ConfigurationAborted" MAX_UNAVAILABLE_LIMIT_REACHED = "MaxUnavailableLimitReached"