# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------
from msrest.serialization import Model
[docs]class IntegrationRuntimeRemoveNodeRequest(Model):
"""Request to remove a node.
:param additional_properties: Unmatched properties from the message are
deserialized this collection
:type additional_properties: dict[str, object]
:param node_name: The name of the node to be removed.
:type node_name: str
"""
_attribute_map = {
'additional_properties': {'key': '', 'type': '{object}'},
'node_name': {'key': 'nodeName', 'type': 'str'},
}
def __init__(self, additional_properties=None, node_name=None):
super(IntegrationRuntimeRemoveNodeRequest, self).__init__()
self.additional_properties = additional_properties
self.node_name = node_name