elastic-db-tools/src/main/java/com/microsoft/azure/elasticdb/shard/storeops/base/StoreOperationRequestBuilder.java [873:880]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static JAXBElement<StoreOperationInput> removeShardLocal(UUID operationId,
            StoreShardMap shardMap,
            StoreShard shard) {
        QName rootElementName = new QName("RemoveShardLocal");
        StoreOperationInput input = new StoreOperationInput.Builder().withLsmVersion().withOperationId(operationId)
                .withShardMap(shardMap == null ? StoreShardMap.NULL : shardMap).withShard(shard == null ? StoreShard.NULL : shard).build();
        return new JAXBElement<>(rootElementName, StoreOperationInput.class, input);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



elastic-db-tools/src/main/java/com/microsoft/azure/elasticdb/shard/storeops/base/StoreOperationRequestBuilder.java [893:900]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static JAXBElement<StoreOperationInput> updateShardLocal(UUID operationId,
            StoreShardMap shardMap,
            StoreShard shard) {
        QName rootElementName = new QName("UpdateShardLocal");
        StoreOperationInput input = new StoreOperationInput.Builder().withLsmVersion().withOperationId(operationId)
                .withShardMap(shardMap == null ? StoreShardMap.NULL : shardMap).withShard(shard == null ? StoreShard.NULL : shard).build();
        return new JAXBElement<>(rootElementName, StoreOperationInput.class, input);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



