ServicePartitionKind enum
type: string
The kind of partitioning scheme used to partition the service.
Possible values are:
Invalid
- Indicates the partition kind is invalid. All Service Fabric enumerations have the invalid type. The value is zero.Singleton
- Indicates that there is only one partition, and SingletonPartitionSchemeDescription was specified while creating the service. The value is 1.Int64Range
- Indicates that the partition is based on Int64 key ranges, and UniformInt64RangePartitionSchemeDescription was specified while creating the service. The value is 2.Named
- Indicates that the partition is based on string names, and NamedPartitionInformation was specified while creating the service. The value is 3.