Class: Azure::ARM::ServerManagement::Models::PowerShellTabCompletionResults

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/generated/azure_mgmt_server_management/models/power_shell_tab_completion_results.rb

Overview

an array of strings representing the different values that can be tabbed thru

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#resultsArray<String>

Returns:

  • (Array<String>)


17
18
19
# File 'lib/generated/azure_mgmt_server_management/models/power_shell_tab_completion_results.rb', line 17

def results
  @results
end

Class Method Details

.mapperObject

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



24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/generated/azure_mgmt_server_management/models/power_shell_tab_completion_results.rb', line 24

def self.mapper()
  {
    required: false,
    serialized_name: 'PowerShellTabCompletionResults',
    type: {
      name: 'Composite',
      class_name: 'PowerShellTabCompletionResults',
      model_properties: {
        results: {
          required: false,
          serialized_name: 'results',
          type: {
            name: 'Sequence',
            element: {
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        }
      }
    }
  }
end