class Azure::ServiceFabric::V6_3_0_9::Models::PagedPropertyInfoList
The paged list of Service Fabric properties under a given name. 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.
Attributes
@return [String] The continuation token parameter is used to obtain 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.
@return [Boolean] Indicates whether any property under the given name has been modified during the enumeration. If there was a modification, this property value is false.
@return [Array<PropertyInfo>] List of property information.
Public Class Methods
Mapper for PagedPropertyInfoList
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/6.3.0.9/generated/azure_service_fabric/models/paged_property_info_list.rb, line 39 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'PagedPropertyInfoList', type: { name: 'Composite', class_name: 'PagedPropertyInfoList', 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' } }, properties: { client_side_validation: true, required: false, serialized_name: 'Properties', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'PropertyInfoElementType', type: { name: 'Composite', class_name: 'PropertyInfo' } } } } } } } end