mgn / Client / exceptions / ConflictException

ConflictException#

class mgn.Client.exceptions.ConflictException#

The request could not be completed due to a conflict with the current state of the target resource.

Example

try:
  ...
except client.exceptions.ConflictException as e:
  print(e.response)
response#

The parsed error response. All exceptions have a top level Error key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.

Syntax

{
    'code': 'string',
    'errors': [
        {
            'code': 'string',
            'message': 'string',
            'resourceId': 'string',
            'resourceType': 'string'
        },
    ],
    'message': 'string',
    'resourceId': 'string',
    'resourceType': 'string',
    'Error': {
        'Code': 'string',
        'Message': 'string'
    }
}

Structure

  • (dict) –

    The request could not be completed due to a conflict with the current state of the target resource.

    • code (string) –

    • errors (list) –

      Conflict Exception specific errors.

      • (dict) –

        Error details.

        • code (string) –

          Error details code.

        • message (string) –

          Error details message.

        • resourceId (string) –

          Error details resourceId.

        • resourceType (string) –

          Error details resourceType.

    • message (string) –

    • resourceId (string) –

      A conflict occurred when prompting for the Resource ID.

    • resourceType (string) –

      A conflict occurred when prompting for resource type.

    • Error (dict) – Normalized access to common exception attributes.

      • Code (string) – An identifier specifying the exception type.

      • Message (string) – A descriptive message explaining why the exception occured.