Class: Azure::Cosmosdb::Mgmt::V2021_01_15::Models::NotebookWorkspaceConnectionInfoResult

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2021-01-15/generated/azure_mgmt_cosmosdb/models/notebook_workspace_connection_info_result.rb

Overview

The connection info for the given notebook workspace

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#auth_tokenString

server (uses token-based auth).

Returns:

  • (String)

    Specifies auth token used for connecting to Notebook



17
18
19
# File 'lib/2021-01-15/generated/azure_mgmt_cosmosdb/models/notebook_workspace_connection_info_result.rb', line 17

def auth_token
  @auth_token
end

#notebook_server_endpointString

Returns Specifies the endpoint of Notebook server.

Returns:

  • (String)

    Specifies the endpoint of Notebook server.



20
21
22
# File 'lib/2021-01-15/generated/azure_mgmt_cosmosdb/models/notebook_workspace_connection_info_result.rb', line 20

def notebook_server_endpoint
  @notebook_server_endpoint
end

Class Method Details

.mapperObject

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



27
28
29
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
# File 'lib/2021-01-15/generated/azure_mgmt_cosmosdb/models/notebook_workspace_connection_info_result.rb', line 27

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'NotebookWorkspaceConnectionInfoResult',
    type: {
      name: 'Composite',
      class_name: 'NotebookWorkspaceConnectionInfoResult',
      model_properties: {
        auth_token: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'authToken',
          type: {
            name: 'String'
          }
        },
        notebook_server_endpoint: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'notebookServerEndpoint',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end