Class: Azure::Synapse::Mgmt::V2019_06_01_preview::Models::WorkspacePatchInfo

Inherits:
Object
  • Object
show all
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

Class Method Summary collapse

Instance Attribute Details

#encryptionEncryptionDetails

Returns The encryption details of the workspace.

Returns:



38
39
40
# File 'lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/workspace_patch_info.rb', line 38

def encryption
  @encryption
end

#identityManagedIdentity

Returns The identity of the workspace.

Returns:



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_settingsManagedVirtualNetworkSettings

Settings

Returns:



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_stateString

Returns Resource provisioning state.

Returns:

  • (String)

    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_configurationPurviewConfiguration

Returns Purview Configuration.

Returns:



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_passwordString

Returns SQL administrator login password.

Returns:

  • (String)

    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
end

#tagsHash{String => String}

Returns Resource tags.

Returns:

  • (Hash{String => String})

    Resource tags



16
17
18
# File 'lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/workspace_patch_info.rb', line 16

def tags
  @tags
end

#workspace_repository_configurationWorkspaceRepositoryConfiguration

Returns Git integration settings.

Returns:



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

.mapperObject

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