Class: Azure::Sqlvirtualmachine::Mgmt::V2017_03_01_preview::Models::WsfcDomainCredentials
- Inherits:
-
Object
- Object
- Azure::Sqlvirtualmachine::Mgmt::V2017_03_01_preview::Models::WsfcDomainCredentials
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-03-01-preview/generated/azure_mgmt_sqlvirtualmachine/models/wsfc_domain_credentials.rb
Overview
Domain credentials for setting up Windows Server Failover Cluster for SQL availability group.
Instance Attribute Summary collapse
-
#cluster_bootstrap_account_password ⇒ String
Cluster bootstrap account password.
-
#cluster_operator_account_password ⇒ String
Cluster operator account password.
-
#sql_service_account_password ⇒ String
SQL service account password.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for WsfcDomainCredentials class as Ruby Hash.
Instance Attribute Details
#cluster_bootstrap_account_password ⇒ String
Returns Cluster bootstrap account password.
17 18 19 |
# File 'lib/2017-03-01-preview/generated/azure_mgmt_sqlvirtualmachine/models/wsfc_domain_credentials.rb', line 17 def cluster_bootstrap_account_password @cluster_bootstrap_account_password end |
#cluster_operator_account_password ⇒ String
Returns Cluster operator account password.
20 21 22 |
# File 'lib/2017-03-01-preview/generated/azure_mgmt_sqlvirtualmachine/models/wsfc_domain_credentials.rb', line 20 def cluster_operator_account_password @cluster_operator_account_password end |
#sql_service_account_password ⇒ String
Returns SQL service account password.
23 24 25 |
# File 'lib/2017-03-01-preview/generated/azure_mgmt_sqlvirtualmachine/models/wsfc_domain_credentials.rb', line 23 def sql_service_account_password @sql_service_account_password end |
Class Method Details
.mapper ⇒ Object
Mapper for WsfcDomainCredentials class as Ruby Hash. This will be used for serialization/deserialization.
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
# 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 |