Class: Azure::ServiceFabric::V6_4_0_36::Models::PagedSubNameInfoList

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/6.4.0.36/generated/azure_service_fabric/models/paged_sub_name_info_list.rb

Overview

A paged list of Service Fabric names. The list is paged when all of the results cannot fit in a single message. The next set of results can be obtained by executing the same query with the continuation token provided in this list.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#continuation_tokenString

next set of results. The continuation token is included in the response of the API when the results from the system do not fit in a single response. When this value is passed to the next API call, the API returns next set of results. If there are no further results, then the continuation token is not included in the response.

Returns:

  • (String)

    The continuation token parameter is used to obtain



24
25
26
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/paged_sub_name_info_list.rb', line 24

def continuation_token
  @continuation_token
end

#is_consistentBoolean

been modified during the enumeration. If there was a modification, this property value is false.

Returns:

  • (Boolean)

    Indicates whether any name under the given name has



29
30
31
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/paged_sub_name_info_list.rb', line 29

def is_consistent
  @is_consistent
end

#sub_namesArray<String>

Returns List of the child names.

Returns:

  • (Array<String>)

    List of the child names.



32
33
34
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/paged_sub_name_info_list.rb', line 32

def sub_names
  @sub_names
end

Class Method Details

.mapperObject

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



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/6.4.0.36/generated/azure_service_fabric/models/paged_sub_name_info_list.rb', line 39

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'PagedSubNameInfoList',
    type: {
      name: 'Composite',
      class_name: 'PagedSubNameInfoList',
      model_properties: {
        continuation_token: {
          client_side_validation: true,
          required: false,
          serialized_name: 'ContinuationToken',
          type: {
            name: 'String'
          }
        },
        is_consistent: {
          client_side_validation: true,
          required: false,
          serialized_name: 'IsConsistent',
          type: {
            name: 'Boolean'
          }
        },
        sub_names: {
          client_side_validation: true,
          required: false,
          serialized_name: 'SubNames',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        }
      }
    }
  }
end