Class: Azure::MachineLearningServices::Mgmt::V2018_11_19::Models::ListWorkspaceKeysResult

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2018-11-19/generated/azure_mgmt_machine_learning_services/models/list_workspace_keys_result.rb

Overview

Model object.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#app_insights_instrumentation_keyString

Returns:

  • (String)


23
24
25
# File 'lib/2018-11-19/generated/azure_mgmt_machine_learning_services/models/list_workspace_keys_result.rb', line 23

def app_insights_instrumentation_key
  @app_insights_instrumentation_key
end

#container_registry_credentialsRegistryListCredentialsResult



26
27
28
# File 'lib/2018-11-19/generated/azure_mgmt_machine_learning_services/models/list_workspace_keys_result.rb', line 26

def container_registry_credentials
  @container_registry_credentials
end

#user_storage_keyString

Returns:

  • (String)


17
18
19
# File 'lib/2018-11-19/generated/azure_mgmt_machine_learning_services/models/list_workspace_keys_result.rb', line 17

def user_storage_key
  @user_storage_key
end

#user_storage_resource_idString

Returns:

  • (String)


20
21
22
# File 'lib/2018-11-19/generated/azure_mgmt_machine_learning_services/models/list_workspace_keys_result.rb', line 20

def user_storage_resource_id
  @user_storage_resource_id
end

Class Method Details

.mapperObject

Mapper for ListWorkspaceKeysResult 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
# File 'lib/2018-11-19/generated/azure_mgmt_machine_learning_services/models/list_workspace_keys_result.rb', line 33

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ListWorkspaceKeysResult',
    type: {
      name: 'Composite',
      class_name: 'ListWorkspaceKeysResult',
      model_properties: {
        user_storage_key: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'userStorageKey',
          type: {
            name: 'String'
          }
        },
        user_storage_resource_id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'userStorageResourceId',
          type: {
            name: 'String'
          }
        },
        app_insights_instrumentation_key: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'appInsightsInstrumentationKey',
          type: {
            name: 'String'
          }
        },
        container_registry_credentials: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'containerRegistryCredentials',
          type: {
            name: 'Composite',
            class_name: 'RegistryListCredentialsResult'
          }
        }
      }
    }
  }
end