class Azure::Sqlvirtualmachine::Mgmt::V2017_03_01_preview::Models::WsfcDomainProfile

Active Directory account details to operate Windows Server Failover Cluster.

Attributes

cluster_bootstrap_account[RW]

@return [String] Account name used for creating cluster (at minimum needs permissions to 'Create Computer Objects' in domain).

cluster_operator_account[RW]

@return [String] Account name used for operating cluster i.e. will be part of administrators group on all the participating virtual machines in the cluster.

domain_fqdn[RW]

@return [String] Fully qualified name of the domain.

file_share_witness_path[RW]

@return [String] Optional path for fileshare witness.

ou_path[RW]

@return [String] Organizational Unit path in which the nodes and cluster will be present.

sql_service_account[RW]

@return [String] Account name under which SQL service will run on all participating SQL virtual machines in the cluster.

storage_account_primary_key[RW]

@return [String] Primary key of the witness storage account.

storage_account_url[RW]

@return [String] Fully qualified ARM resource id of the witness storage account.

Private Class Methods

mapper() click to toggle source

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

# File lib/2017-03-01-preview/generated/azure_mgmt_sqlvirtualmachine/models/wsfc_domain_profile.rb, line 51
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'WsfcDomainProfile',
    type: {
      name: 'Composite',
      class_name: 'WsfcDomainProfile',
      model_properties: {
        domain_fqdn: {
          client_side_validation: true,
          required: false,
          serialized_name: 'domainFqdn',
          type: {
            name: 'String'
          }
        },
        ou_path: {
          client_side_validation: true,
          required: false,
          serialized_name: 'ouPath',
          type: {
            name: 'String'
          }
        },
        cluster_bootstrap_account: {
          client_side_validation: true,
          required: false,
          serialized_name: 'clusterBootstrapAccount',
          type: {
            name: 'String'
          }
        },
        cluster_operator_account: {
          client_side_validation: true,
          required: false,
          serialized_name: 'clusterOperatorAccount',
          type: {
            name: 'String'
          }
        },
        sql_service_account: {
          client_side_validation: true,
          required: false,
          serialized_name: 'sqlServiceAccount',
          type: {
            name: 'String'
          }
        },
        file_share_witness_path: {
          client_side_validation: true,
          required: false,
          serialized_name: 'fileShareWitnessPath',
          type: {
            name: 'String'
          }
        },
        storage_account_url: {
          client_side_validation: true,
          required: false,
          serialized_name: 'storageAccountUrl',
          type: {
            name: 'String'
          }
        },
        storage_account_primary_key: {
          client_side_validation: true,
          required: false,
          serialized_name: 'storageAccountPrimaryKey',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end