class Azure::CognitiveServices::LuisAuthoring::V2_0::Models::AzureAccountInfoObject

Defines the Azure account information object.

Attributes

account_name[RW]

@return [String] The Azure account name.

azure_subscription_id[RW]

@return [String] The id for the Azure subscription.

resource_group[RW]

@return [String] The Azure resource group name.

Public Class Methods

mapper() click to toggle source

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

# File lib/2.0/generated/azure_cognitiveservices_luisauthoring/models/azure_account_info_object.rb, line 29
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'AzureAccountInfoObject',
    type: {
      name: 'Composite',
      class_name: 'AzureAccountInfoObject',
      model_properties: {
        azure_subscription_id: {
          client_side_validation: true,
          required: true,
          serialized_name: 'azureSubscriptionId',
          type: {
            name: 'String'
          }
        },
        resource_group: {
          client_side_validation: true,
          required: true,
          serialized_name: 'resourceGroup',
          type: {
            name: 'String'
          }
        },
        account_name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'accountName',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end