Class: Azure::AnalysisServices::Mgmt::V2017_07_14::Models::AnalysisServicesServer
- Inherits:
-
Resource
- Object
- Resource
- Azure::AnalysisServices::Mgmt::V2017_07_14::Models::AnalysisServicesServer
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-07-14/generated/azure_mgmt_analysis_services/models/analysis_services_server.rb
Overview
Represents an instance of an Analysis Services resource.
Instance Attribute Summary collapse
-
#as_administrators ⇒ ServerAdministrators
A collection of AS server administrators.
-
#backup_blob_container_uri ⇒ String
The SAS container URI to the backup container.
-
#gateway_details ⇒ GatewayDetails
server.
-
#provisioning_state ⇒ ProvisioningState
Services resource.
-
#server_full_name ⇒ String
The full name of the Analysis Services resource.
-
#state ⇒ State
state is to indicate more states outside of resource provisioning.
Attributes inherited from Resource
#id, #location, #name, #sku, #tags, #type
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for AnalysisServicesServer class as Ruby Hash.
Methods inherited from Resource
Instance Attribute Details
#as_administrators ⇒ ServerAdministrators
Returns A collection of AS server administrators.
16 17 18 |
# File 'lib/2017-07-14/generated/azure_mgmt_analysis_services/models/analysis_services_server.rb', line 16 def as_administrators @as_administrators end |
#backup_blob_container_uri ⇒ String
Returns The SAS container URI to the backup container.
19 20 21 |
# File 'lib/2017-07-14/generated/azure_mgmt_analysis_services/models/analysis_services_server.rb', line 19 def backup_blob_container_uri @backup_blob_container_uri end |
#gateway_details ⇒ GatewayDetails
server.
23 24 25 |
# File 'lib/2017-07-14/generated/azure_mgmt_analysis_services/models/analysis_services_server.rb', line 23 def gateway_details @gateway_details end |
#provisioning_state ⇒ ProvisioningState
Services resource. The provisioningState is to indicate states for resource provisioning. Possible values include: ‘Deleting’, ‘Succeeded’, ‘Failed’, ‘Paused’, ‘Suspended’, ‘Provisioning’, ‘Updating’, ‘Suspending’, ‘Pausing’, ‘Resuming’, ‘Preparing’, ‘Scaling’
37 38 39 |
# File 'lib/2017-07-14/generated/azure_mgmt_analysis_services/models/analysis_services_server.rb', line 37 def provisioning_state @provisioning_state end |
#server_full_name ⇒ String
Returns The full name of the Analysis Services resource.
40 41 42 |
# File 'lib/2017-07-14/generated/azure_mgmt_analysis_services/models/analysis_services_server.rb', line 40 def server_full_name @server_full_name end |
#state ⇒ State
state is to indicate more states outside of resource provisioning. Possible values include: ‘Deleting’, ‘Succeeded’, ‘Failed’, ‘Paused’, ‘Suspended’, ‘Provisioning’, ‘Updating’, ‘Suspending’, ‘Pausing’, ‘Resuming’, ‘Preparing’, ‘Scaling’
30 31 32 |
# File 'lib/2017-07-14/generated/azure_mgmt_analysis_services/models/analysis_services_server.rb', line 30 def state @state end |
Class Method Details
.mapper ⇒ Object
Mapper for AnalysisServicesServer class as Ruby Hash. This will be used for serialization/deserialization.
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 |
# File 'lib/2017-07-14/generated/azure_mgmt_analysis_services/models/analysis_services_server.rb', line 47 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'AnalysisServicesServer', type: { name: 'Composite', class_name: 'AnalysisServicesServer', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, location: { client_side_validation: true, required: true, serialized_name: 'location', type: { name: 'String' } }, sku: { client_side_validation: true, required: true, 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' } }, state: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.state', type: { name: 'String' } }, provisioning_state: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.provisioningState', type: { name: 'String' } }, server_full_name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.serverFullName', type: { name: 'String' } } } } } end |