class Azure::Labservices::Mgmt::V2018_10_15::Models::CreateLabProperties
Properties for creating a managed lab and a default environment setting
Attributes
environment_setting_creation_parameters[RW]
@return [EnvironmentSettingCreationParameters] Settings related to creating an environment setting
lab_creation_parameters[RW]
@return [LabCreationParameters] Settings related to creating a lab
location[RW]
@return [String] The location of the resource
name[RW]
@return [String] The name of the resource
Private Class Methods
mapper()
click to toggle source
Mapper for CreateLabProperties
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2018-10-15/generated/azure_mgmt_labservices/models/create_lab_properties.rb, line 36 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'CreateLabProperties', type: { name: 'Composite', class_name: 'CreateLabProperties', model_properties: { environment_setting_creation_parameters: { client_side_validation: true, required: false, serialized_name: 'environmentSettingCreationParameters', type: { name: 'Composite', class_name: 'EnvironmentSettingCreationParameters' } }, lab_creation_parameters: { client_side_validation: true, required: true, serialized_name: 'labCreationParameters', type: { name: 'Composite', class_name: 'LabCreationParameters' } }, name: { client_side_validation: true, required: true, serialized_name: 'name', type: { name: 'String' } }, location: { client_side_validation: true, required: false, serialized_name: 'location', type: { name: 'String' } }, tags: { client_side_validation: true, required: false, serialized_name: 'tags', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } } } } } end