class Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolPerformanceLevelCapability

The Elastic Pool performance level capability.

Attributes

included_max_size[RW]

@return [MaxSizeCapability] The included (free) max size for this performance level.

max_database_count[RW]

@return [Integer] The maximum number of databases supported.

performance_level[RW]

@return [PerformanceLevelCapability] The performance level for the pool.

reason[RW]

@return [String] The reason for the capability not being available.

sku[RW]

@return [Sku] The sku.

status[RW]

@return [CapabilityStatus] The status of the capability. Possible values include: 'Visible', 'Available', 'Default', 'Disabled'

supported_license_types[RW]

@return [Array<LicenseTypeCapability>] List of supported license types.

supported_max_sizes[RW]

@return [Array<MaxSizeRangeCapability>] The list of supported max sizes.

supported_per_database_max_performance_levels[RW]

@return [Array<ElasticPoolPerDatabaseMaxPerformanceLevelCapability>] The list of supported per database max performance levels.

supported_per_database_max_sizes[RW]

@return [Array<MaxSizeRangeCapability>] The list of supported per database max sizes.

Private Class Methods

mapper() click to toggle source

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

# File lib/2017-10-01-preview/generated/azure_mgmt_sql/models/elastic_pool_performance_level_capability.rb, line 56
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ElasticPoolPerformanceLevelCapability',
    type: {
      name: 'Composite',
      class_name: 'ElasticPoolPerformanceLevelCapability',
      model_properties: {
        performance_level: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'performanceLevel',
          type: {
            name: 'Composite',
            class_name: 'PerformanceLevelCapability'
          }
        },
        sku: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'sku',
          type: {
            name: 'Composite',
            class_name: 'Sku'
          }
        },
        supported_license_types: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'supportedLicenseTypes',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'LicenseTypeCapabilityElementType',
                type: {
                  name: 'Composite',
                  class_name: 'LicenseTypeCapability'
                }
            }
          }
        },
        max_database_count: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'maxDatabaseCount',
          type: {
            name: 'Number'
          }
        },
        included_max_size: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'includedMaxSize',
          type: {
            name: 'Composite',
            class_name: 'MaxSizeCapability'
          }
        },
        supported_max_sizes: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'supportedMaxSizes',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'MaxSizeRangeCapabilityElementType',
                type: {
                  name: 'Composite',
                  class_name: 'MaxSizeRangeCapability'
                }
            }
          }
        },
        supported_per_database_max_sizes: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'supportedPerDatabaseMaxSizes',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'MaxSizeRangeCapabilityElementType',
                type: {
                  name: 'Composite',
                  class_name: 'MaxSizeRangeCapability'
                }
            }
          }
        },
        supported_per_database_max_performance_levels: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'supportedPerDatabaseMaxPerformanceLevels',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'ElasticPoolPerDatabaseMaxPerformanceLevelCapabilityElementType',
                type: {
                  name: 'Composite',
                  class_name: 'ElasticPoolPerDatabaseMaxPerformanceLevelCapability'
                }
            }
          }
        },
        status: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'status',
          type: {
            name: 'Enum',
            module: 'CapabilityStatus'
          }
        },
        reason: {
          client_side_validation: true,
          required: false,
          serialized_name: 'reason',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end