class Azure::BotService::Mgmt::V2018_07_12_preview::Models::EnterpriseChannelNode

The properties specific to an Enterprise Channel Node.

Attributes

azure_location[RW]

@return [String] The location of the Enterprise Channel Node.

azure_sku[RW]

@return [String] The sku of the Enterprise Channel Node.

id[RW]

@return [String] Id of Enterprise Channel Node. This is generated by the Bot Framework.

name[RW]

@return [String] The name of the Enterprise Channel Node.

state[RW]

@return [EnterpriseChannelNodeState] The current state of the Enterprise Channel Node. Possible values include: 'Creating', 'CreateFailed', 'Started', 'Starting', 'StartFailed', 'Stopped', 'Stopping', 'StopFailed', 'Deleting', 'DeleteFailed'

Private Class Methods

mapper() click to toggle source

Mapper for EnterpriseChannelNode class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2018-07-12-preview/generated/azure_mgmt_bot_service/models/enterprise_channel_node.rb, line 39
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'EnterpriseChannelNode',
    type: {
      name: 'Composite',
      class_name: 'EnterpriseChannelNode',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        state: {
          client_side_validation: true,
          required: false,
          serialized_name: 'state',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        azure_sku: {
          client_side_validation: true,
          required: true,
          serialized_name: 'azureSku',
          type: {
            name: 'String'
          }
        },
        azure_location: {
          client_side_validation: true,
          required: true,
          serialized_name: 'azureLocation',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end