class Azure::AnalysisServices::Mgmt::V2017_07_14::Models::AnalysisServicesServerUpdateParameters

Provision request specification

Attributes

as_administrators[RW]

@return [ServerAdministrators] A collection of AS server administrators

backup_blob_container_uri[RW]

@return [String] The SAS container URI to the backup container.

gateway_details[RW]

@return [GatewayDetails] The gateway details configured for the AS server.

sku[RW]

@return [ResourceSku] The SKU of the Analysis Services resource.

tags[RW]

@return [Hash{String => String}] Key-value pairs of additional provisioning properties.

Public Class Methods

mapper() click to toggle source

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

# File lib/2017-07-14/generated/azure_mgmt_analysis_services/models/analysis_services_server_update_parameters.rb, line 37
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'AnalysisServicesServerUpdateParameters',
    type: {
      name: 'Composite',
      class_name: 'AnalysisServicesServerUpdateParameters',
      model_properties: {
        sku: {
          client_side_validation: true,
          required: false,
          serialized_name: 'sku',
          type: {
            name: 'Composite',
            class_name: 'ResourceSku'
          }
        },
        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'
                }
            }
          }
        },
        as_administrators: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.asAdministrators',
          type: {
            name: 'Composite',
            class_name: 'ServerAdministrators'
          }
        },
        backup_blob_container_uri: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.backupBlobContainerUri',
          type: {
            name: 'String'
          }
        },
        gateway_details: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.gatewayDetails',
          type: {
            name: 'Composite',
            class_name: 'GatewayDetails'
          }
        }
      }
    }
  }
end