class Azure::ServiceFabric::V7_0_0_42::Models::PagedReplicaInfoList
The list of replicas in the cluster for a given partition. 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 [Array<ReplicaInfo>] List of replica information.
Private Class Methods
Mapper for PagedReplicaInfoList
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/7.0.0.42/generated/azure_service_fabric/models/paged_replica_info_list.rb, line 34 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'PagedReplicaInfoList', type: { name: 'Composite', class_name: 'PagedReplicaInfoList', model_properties: { continuation_token: { client_side_validation: true, required: false, serialized_name: 'ContinuationToken', type: { name: 'String' } }, items: { client_side_validation: true, required: false, serialized_name: 'Items', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'ReplicaInfoElementType', type: { name: 'Composite', polymorphic_discriminator: 'ServiceKind', uber_parent: 'ReplicaInfo', class_name: 'ReplicaInfo' } } } } } } } end