Class: Azure::Synapse::Mgmt::V2019_06_01_preview::Models::WorkspacePatchInfo
- Inherits:
-
Object
- Object
- Azure::Synapse::Mgmt::V2019_06_01_preview::Models::WorkspacePatchInfo
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/workspace_patch_info.rb
Overview
Workspace patch details
Instance Attribute Summary collapse
-
#encryption ⇒ EncryptionDetails
The encryption details of the workspace.
-
#identity ⇒ ManagedIdentity
The identity of the workspace.
-
#managed_virtual_network_settings ⇒ ManagedVirtualNetworkSettings
Settings.
-
#provisioning_state ⇒ String
Resource provisioning state.
-
#purview_configuration ⇒ PurviewConfiguration
Purview Configuration.
-
#sql_administrator_login_password ⇒ String
SQL administrator login password.
-
#tags ⇒ Hash{String => String}
Resource tags.
-
#workspace_repository_configuration ⇒ WorkspaceRepositoryConfiguration
Git integration settings.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for WorkspacePatchInfo class as Ruby Hash.
Instance Attribute Details
#encryption ⇒ EncryptionDetails
Returns The encryption details of the workspace.
38 39 40 |
# File 'lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/workspace_patch_info.rb', line 38 def encryption @encryption end |
#identity ⇒ ManagedIdentity
Returns The identity of the workspace.
19 20 21 |
# File 'lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/workspace_patch_info.rb', line 19 def identity @identity end |
#managed_virtual_network_settings ⇒ ManagedVirtualNetworkSettings
Settings
26 27 28 |
# File 'lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/workspace_patch_info.rb', line 26 def managed_virtual_network_settings @managed_virtual_network_settings end |
#provisioning_state ⇒ String
Returns Resource provisioning state.
35 36 37 |
# File 'lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/workspace_patch_info.rb', line 35 def provisioning_state @provisioning_state end |
#purview_configuration ⇒ PurviewConfiguration
Returns Purview Configuration.
32 33 34 |
# File 'lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/workspace_patch_info.rb', line 32 def purview_configuration @purview_configuration end |
#sql_administrator_login_password ⇒ String
Returns SQL administrator login password.
22 23 24 |
# File 'lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/workspace_patch_info.rb', line 22 def sql_administrator_login_password @sql_administrator_login_password end |
#tags ⇒ Hash{String => String}
Returns Resource tags.
16 17 18 |
# File 'lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/workspace_patch_info.rb', line 16 def @tags end |
#workspace_repository_configuration ⇒ WorkspaceRepositoryConfiguration
Returns Git integration settings.
29 30 31 |
# File 'lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/workspace_patch_info.rb', line 29 def workspace_repository_configuration @workspace_repository_configuration end |
Class Method Details
.mapper ⇒ Object
Mapper for WorkspacePatchInfo class as Ruby Hash. This will be used for serialization/deserialization.
45 46 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 |
# File 'lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/workspace_patch_info.rb', line 45 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'WorkspacePatchInfo', type: { name: 'Composite', class_name: 'WorkspacePatchInfo', model_properties: { 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' } } } }, identity: { client_side_validation: true, required: false, serialized_name: 'identity', type: { name: 'Composite', class_name: 'ManagedIdentity' } }, sql_administrator_login_password: { client_side_validation: true, required: false, serialized_name: 'properties.sqlAdministratorLoginPassword', type: { name: 'String' } }, managed_virtual_network_settings: { client_side_validation: true, required: false, serialized_name: 'properties.managedVirtualNetworkSettings', type: { name: 'Composite', class_name: 'ManagedVirtualNetworkSettings' } }, workspace_repository_configuration: { client_side_validation: true, required: false, serialized_name: 'properties.workspaceRepositoryConfiguration', type: { name: 'Composite', class_name: 'WorkspaceRepositoryConfiguration' } }, purview_configuration: { client_side_validation: true, required: false, serialized_name: 'properties.purviewConfiguration', type: { name: 'Composite', class_name: 'PurviewConfiguration' } }, provisioning_state: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.provisioningState', type: { name: 'String' } }, encryption: { client_side_validation: true, required: false, serialized_name: 'properties.encryption', type: { name: 'Composite', class_name: 'EncryptionDetails' } } } } } end |