class Azure::Sqlvirtualmachine::Mgmt::V2017_03_01_preview::Models::WsfcDomainCredentials

Domain credentials for setting up Windows Server Failover Cluster for SQL availability group.

Attributes

cluster_bootstrap_account_password[RW]

@return [String] Cluster bootstrap account password.

cluster_operator_account_password[RW]

@return [String] Cluster operator account password.

sql_service_account_password[RW]

@return [String] SQL service account password.

Private Class Methods

mapper() click to toggle source

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

# File lib/2017-03-01-preview/generated/azure_mgmt_sqlvirtualmachine/models/wsfc_domain_credentials.rb, line 30
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'WsfcDomainCredentials',
    type: {
      name: 'Composite',
      class_name: 'WsfcDomainCredentials',
      model_properties: {
        cluster_bootstrap_account_password: {
          client_side_validation: true,
          required: false,
          serialized_name: 'clusterBootstrapAccountPassword',
          type: {
            name: 'String'
          }
        },
        cluster_operator_account_password: {
          client_side_validation: true,
          required: false,
          serialized_name: 'clusterOperatorAccountPassword',
          type: {
            name: 'String'
          }
        },
        sql_service_account_password: {
          client_side_validation: true,
          required: false,
          serialized_name: 'sqlServiceAccountPassword',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end