Class: Azure::DevSpaces::Mgmt::V2018_06_01_preview::Models::ControllerConnectionDetails

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2018-06-01-preview/generated/azure_mgmt_dev_spaces/models/controller_connection_details.rb

Overview

Model object.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#auth_keyString

Returns Authentication key for communicating with services.

Returns:

  • (String)

    Authentication key for communicating with services.



17
18
19
# File 'lib/2018-06-01-preview/generated/azure_mgmt_dev_spaces/models/controller_connection_details.rb', line 17

def auth_key
  @auth_key
end

#orchestrator_specific_connection_detailsOrchestratorSpecificConnectionDetails



26
27
28
# File 'lib/2018-06-01-preview/generated/azure_mgmt_dev_spaces/models/controller_connection_details.rb', line 26

def orchestrator_specific_connection_details
  @orchestrator_specific_connection_details
end

#workspace_storage_account_nameString

Returns Workspace storage account name.

Returns:

  • (String)

    Workspace storage account name.



20
21
22
# File 'lib/2018-06-01-preview/generated/azure_mgmt_dev_spaces/models/controller_connection_details.rb', line 20

def 
  @workspace_storage_account_name
end

#workspace_storage_sas_tokenString

Returns Workspace storage account SAS token.

Returns:

  • (String)

    Workspace storage account SAS token.



23
24
25
# File 'lib/2018-06-01-preview/generated/azure_mgmt_dev_spaces/models/controller_connection_details.rb', line 23

def workspace_storage_sas_token
  @workspace_storage_sas_token
end

Class Method Details

.mapperObject

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



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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# File 'lib/2018-06-01-preview/generated/azure_mgmt_dev_spaces/models/controller_connection_details.rb', line 33

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ControllerConnectionDetails',
    type: {
      name: 'Composite',
      class_name: 'ControllerConnectionDetails',
      model_properties: {
        auth_key: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'authKey',
          type: {
            name: 'String'
          }
        },
        workspace_storage_account_name: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'workspaceStorageAccountName',
          type: {
            name: 'String'
          }
        },
        workspace_storage_sas_token: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'workspaceStorageSasToken',
          type: {
            name: 'String'
          }
        },
        orchestrator_specific_connection_details: {
          client_side_validation: true,
          required: false,
          serialized_name: 'orchestratorSpecificConnectionDetails',
          type: {
            name: 'Composite',
            polymorphic_discriminator: 'instanceType',
            uber_parent: 'OrchestratorSpecificConnectionDetails',
            class_name: 'OrchestratorSpecificConnectionDetails'
          }
        }
      }
    }
  }
end